Advanced Search
Search Results
989 total results found
Installing an Operating System (OS)
Example 1
A) The vertex is (4,3) B) The vertex is (-3,-3)
[Completed] Professional Google Cybersecurity Specialization C4/8;Tools of the Trade: Linux and SQL
Hello, and welcome to Tools of the Trade: Linux and SQL, the fourth course in the Google Cybersecurity Certificate. You're on an exciting journey!By the end of this course, you will develop a greater understanding of the basics of computing that will support y...
What is Networking?
uber basic check for kelogers.py
import psutil import os import sys def find_suspicious_processes(): suspicious_processes = [] for process in psutil.process_iter(['pid', 'name', 'exe', 'cmdline']): try: if process.info['exe'] and process.info['cmdline']:...
[Completed] Professional Google Cybersecurity Specialization C3/8; Connect and Protect: Networks and Network Security
14 hours (approximately)Grade Achieved: 97.62% pro tip only do the exams when your not tired
Impact of the Internet
start-win-defender.bat
@echo offecho Starting Windows Defender malware scan..."%ProgramFiles%\Windows Defender\MpCmdRun.exe" -Scan -ScanType 1echo Scan complete.pause
[Completed] Professional Google Cybersecurity Specialization C5/8; assets, threats, and vulnerabilities
Introduction to Software
map maker v3.py (functioning?) last ping 1.0.212.120 white
import os import socket import struct from ping3 import ping from PIL import Image print("start running") def ip_to_int(ip): int_ip = struct.unpack("!I", socket.inet_aton(ip))[0] return int_ip def int_to_ip(i): ip = socket.inet_...
yt transcripts tech ecucation edition
Interacting with Software
[Active] leet code/ctf
notes/explanations
Troubeshooting best practices
check for systemstats.py v1
import psutil import datetime def check_high_memory_usage(threshold=50): high_memory_usage_processes = [] total_memory = psutil.virtual_memory().total for proc in psutil.process_iter(['pid', 'name', 'memory_info']): try: ...