Day 71 of #100DaysOfHacking
Create password hash using:
`openssl passwd -1 -salt [salt] [password]`
Which can be used to add super user in /etc/passwd
`username:passwordhash:0:0:root:/root:/bin/bash`
https://t.co/pu983OmgZ4
Day 64 of #100DaysOfHacking
Some Burp Suite keyboard shortcuts:
1๏ธโฃ Ctrl+Shift+D : Switch to Dashboard
2๏ธโฃ Ctrl+Shift+T : Switch to Target tab
3๏ธโฃ Ctrl+Shift+P : Switch to Proxy tab
4๏ธโฃ Ctrl+Shift+I : Switch to Intruder tab
5๏ธโฃ Ctrl+Shift+R : Switch to Repeater tab
Day 60 of #100DaysOfHacking
The Sysinternals toolset includes strings.exe which can be used to extract "strings" stored within a file or application.
strings.exe calculator.exe > strings.txt
https://t.co/usHYFfUVZq
Day 59 of #100DaysOfHacking
cd /tmp
Usually the place for enumeration scripts since any user can write to /tmp directory by default.
#tryhackme#linux fundamentals
Day 58 of #100DaysOfHacking
su -l user2
switch user to user2 using `-l` or `--login`
- present working directory will be user2 home
- properties will be similar as user2 logging in
#tryhackme#linux fundamentals