File tree Expand file tree Collapse file tree 10 files changed +120
-3
lines changed Expand file tree Collapse file tree 10 files changed +120
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Comma
2
+
3
+ > Voer commando's uit zonder ze te installeren.
4
+ > Meer informatie: < https://github.com/nix-community/comma > .
5
+
6
+ - Voer een commando uit:
7
+
8
+ ` , {{commando -met -vlaggen}} `
9
+
10
+ - Voeg een commando toe aan een child shell:
11
+
12
+ ` , {{[-s|--shell]}} {{command}} `
13
+
14
+ - Wis de cache:
15
+
16
+ ` , {{[-e|--empty-cache]}} `
Original file line number Diff line number Diff line change
1
+ # copr-cli
2
+
3
+ > Interface met Fedora-projecten copr instantie voor het bouwen van RPM's en het publiceren ervan.
4
+ > Meer informatie: < https://manned.org/copr-cli > .
5
+
6
+ - Toon de gebruiker ingelogd in copr:
7
+
8
+ ` copr-cli whoami `
9
+
10
+ - Bouw een lokaal spec-bestand op copr:
11
+
12
+ ` copr-cli build {{repository}} {{pad/naar/spec_bestand}} `
13
+
14
+ - Controleer de status van de builds:
15
+
16
+ ` copr-cli list-builds {{repository}} `
17
+
18
+ - Trigger een copr build van een spec-bestand vanuit een publieke (Git) repository:repository:
19
+
20
+ ` copr-cli buildscm {{repository}} --clone-url {{https://git.example.org/repo}} --spec {{spec_bestandsnaam}} `
Original file line number Diff line number Diff line change
1
+ # GetADUsers.py
2
+
3
+ > Haal een lijst met gebruikers op van Active Directory, inclusief attributen zoals laatste logon timestamp en email.
4
+ > Onderdeel van de Impacket suite.
5
+ > Meer informatie: < https://github.com/fortra/impacket > .
6
+
7
+ - Ga over alle Active Directory gebruikers en de attributen:
8
+
9
+ ` GetADUsers.py -all -dc-ip {{domain_controller_ip}} {{domein}}/{{gebruikersnaam}}:{{wachtwoord}} `
10
+
11
+ - Verkrijg informatie voor een specifieke gebruiker:
12
+
13
+ ` GetADUsers.py -user {{gebruiker}} -dc-ip {{domain_controller_ip}} {{domein}}/{{gebruikersnaam}}:{{wachtwoord}} `
14
+
15
+ - Extraheer gebruiksdetials door gebruik te maken van pass-the-hash authentication:
16
+
17
+ ` GetADUsers.py -all -dc-ip {{domain_controller_ip}} -hashes {{LM_Hash}}:{{NT_Hash}} {{domein}}/{{gebruikersnaam}} `
18
+
19
+ - Sla de output op in een bestand:
20
+
21
+ ` GetADUsers.py -all -dc-ip {{domain_controller_ip}} {{domein}}/{{gebruikersnaam}}:{{wachtwoord}} > {{pad/naar/output.txt}} `
Original file line number Diff line number Diff line change
1
+ # getArch.py
2
+
3
+ > Bepaal de OS architectuur (x86 og x64) van een remote Windows systeem.
4
+ > Onderdeel van de Impacket suite.
5
+ > Meer informatie: < https://github.com/fortra/impacket > .
6
+
7
+ - Controleer de architectuur van een enkel doel-systeem:
8
+
9
+ ` getArch.py -target {{doel}} `
10
+
11
+ - Controleer de architectuur van meerdere doelen van een bestand (één per regel):
12
+
13
+ ` getArch.py -targets {{pad/naar/doelen_file}} `
14
+
15
+ - Stel een custom socket timeout in (standaard is 2 seconden):
16
+
17
+ ` getArch.py -target {{target}} -timeout {{seconden}} `
18
+
19
+ - Schakel debug-modus in voor gedetailleerde uitvoer:
20
+
21
+ ` getArch.py -target {{target}} -debug `
Original file line number Diff line number Diff line change
1
+ # GetNPUsers.py
2
+
3
+ > Ga over alle Active Directory accounts met Kerberos pre-authentication uitgeschakeld, die vatbaar kunnen zijn voor AS-REP roasing aanvallen.
4
+ > Onderdeel van de Impacket suite.
5
+ > Meer informatie: < https://github.com/fortra/impacket > .
6
+
7
+ - Ga over alle gebruikers met Kerberos pre-authentication uitgeschakeld (standaard anonieme enumeration):
8
+
9
+ ` GetNPUsers.py {{domein}}/ -usersfile {{pad/naar/gebruikerslijst}} -dc-ip {{domain_controller_ip}} `
10
+
11
+ - Voer AS-REP roasting uit en dump kraakbare hashes voor offline kraking:
12
+
13
+ ` GetNPUsers.py {{domein}}/ -usersfile {{pad/naar/gebruikerslijst}} -dc-ip {{domain_controller_ip}} -request `
14
+
15
+ - Authenticeer met valide credentials (als anonieme binding is uitgeschakeld):
16
+
17
+ ` GetNPUsers.py {{domein}}/{{username}}:{{password}} -usersfile {{pad/naar/gebruikerslijst}} -dc-ip {{domain_controller_ip}} `
18
+
19
+ - Gebruik pass-the-hash authenticatie in plaats van een wachtwoord:
20
+
21
+ ` GetNPUsers.py {{domein}}/{{username}} -hashes {{LM_Hash}}:{{NT_Hash}} -usersfile {{pad/naar/gebruikerslijst}} -dc-ip {{domain_controller_ip}} `
22
+
23
+ - Sla de output op in een bestand:
24
+
25
+ ` GetNPUsers.py {{domein}}/ -usersfile {{pad/naar/gebruikerslijst}} -dc-ip {{domain_controller_ip}} -request > {{pad/naar/output.txt}} `
Original file line number Diff line number Diff line change
1
+ # impacket-rpcdump
2
+
3
+ > Dit commando is een alias van ` rpcdump.py ` .
4
+
5
+ - Bekijk de documentatie van het originele commando:
6
+
7
+ ` tldr rpcdump.py `
Original file line number Diff line number Diff line change
1
+ # impacket-rpcmap
2
+
3
+ > Dit commando is een alias van ` rpcmap.py ` .
4
+
5
+ - Bekijk de documentatie van het originele commando:
6
+
7
+ ` tldr rpcmap.py `
Original file line number Diff line number Diff line change 15
15
16
16
` copr-cli list-builds {{repository}} `
17
17
18
- - Trigger a copr build of a spec-file from public (git ) repository:
18
+ - Trigger a copr build of a spec-file from public (Git ) repository:
19
19
20
20
` copr-cli buildscm {{repository}} --clone-url {{https://git.example.org/repo}} --spec {{spec_file_name}} `
Original file line number Diff line number Diff line change 18
18
19
19
- Save output to a file:
20
20
21
- ` GetADUsers.py -all -dc-ip {{domain_controller_ip}} {{domain}}/{{username}}:{{password}} > output.txt `
21
+ ` GetADUsers.py -all -dc-ip {{domain_controller_ip}} {{domain}}/{{username}}:{{password}} > {{path/to/ output.txt}} `
Original file line number Diff line number Diff line change 22
22
23
23
- Save the output to a file for further analysis:
24
24
25
- ` GetNPUsers.py {{domain}}/ -usersfile {{path/to/userslist}} -dc-ip {{domain_controller_ip}} -request > {{output.txt}} `
25
+ ` GetNPUsers.py {{domain}}/ -usersfile {{path/to/userslist}} -dc-ip {{domain_controller_ip}} -request > {{path/to/ output.txt}} `
You can’t perform that action at this time.
0 commit comments