Simula-o_Ataque_PTES_Windows

(★ 34)

No description available.

File Explorer

  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

certutil

View Details ▼

Manage keys and certificates in both NSS databases and other NSS tokens.

certutil -N -d .

Create a [N]ew certificate database in the current [d]irectory:

certutil {{filename}}

Dump the configuration information or files:

certutil -L -d .

[L]ist all certificates in a database:

🔍

netstat

View Details ▼

Display network-related information such as open connections, open socket ports, etc.
See also: `ss`.

netstat {{[-a|--all]}}

List all ports:

netstat -p {{protocol}}

Display the PID and program name listening on a specific protocol:

netstat

Display active TCP connections:

🔍

nslookup

View Details ▼

Query name servers for various domain records.
See also: `dig`, `resolvectl`, `host`.

nslookup {{example.com}}

Query your system's default name server for an IP address (A record) of the domain:

nslookup -type=NS {{example.com}} {{8.8.8.8}}

Query a given name server for a NS record of the domain:

nslookup -type=PTR {{54.240.162.118}}

Query for a reverse lookup (PTR record) of an IP address:

🔍

net

View Details ▼

System utility to view and modify network-related settings.

net {{start|stop}} {{service}}

Start or stop a Windows service synchronously:

net use {{\\smb_shared_folder}} /USER:{{username}}

Make sure an SMB share is available in the current console:

net share

Show the folders currently shared over SMB:

🔍

reg save

View Details ▼

Save a registry key, its subkeys and values to a native `.hiv` file.

reg save {{key_name}} {{path\to\file.hiv}}

Save a registry key, its subkeys and values to a specific file:

reg save {{key_name}} {{path\to\file.hiv}} /y

Forcefully (assuming [y]es) overwrite an existing file:

🔍

systeminfo

View Details ▼

Display operating system configuration for a local or remote machine.

systeminfo

Display system configuration for the local machine:

systeminfo /fo {{table|list|csv}}

Display system configuration in a specified output format:

systeminfo /s {{remote_name}} /u {{username}} /p {{password}}

Display system configuration for a remote machine:

// repository documentation