hacker-roadmap:
Your beginner pen-testing start guide.
Guide for amateur pen testers and a collection of hacking tools, resources and references to practice ethical hacking and web security :
✉️ a zone for no one and everyone :) 🔞
Your beginner pen-testing start guide.
Guide for amateur pen testers and a collection of hacking tools, resources and references to practice ethical hacking and web security :
Source: https://vid.puffyan.us/playlist?list=PLVxiWMqQvhg8ZisiOBLAVkhLOYCkzTst0
Fallback link if the above instance goes down
https://www.youtube.com/playlist?list=PLVxiWMqQvhg8ZisiOBLAVkhLOYCkzTst0
Try Harder
Welcome to the Gitbook Repository “All About OSCP” where you will find everything related to OSCP that I have learnt during my preparation. I hope it helps :) Since too many friends were asking for my Cherrytree notes, I have removed all information related to Offsec exam & labs. The offensive security team reviewed this document and we got approval from them to share the notes publically for the infosec community…
Source: https://oscp.infosecsanyam.in/
Run your own private website to share what you want with only the people you choose.
Haven puts you in complete control of what you write. You choose who gets to see it instead of trusting a big company to control who gets access on your behalf. Share pictures of your kids with family and friends; share private thoughts with those you trust most; you're in control with no ads, and no tracking…
Source https://havenweb.org/
sudo apt-get install lm-sensors
To query a live verbose output
watch sensors
You can stop the output via ctrl+c
If you are a fan of GUI output, there is the tool psensor
sudo apt install psensor
After the installation you can just start it from withing your GUI i.e. Desktop environment.
xrandr --query
xrandr -q
If you would like to have a GUI solution use arandr
sudo apt install -y arandr
lspci -nnk | grep -A3 "\[03..\]:" ``
sudo hwclock -r
source: https://www.thegeekstuff.com/2013/08/hwclock-examples/ source: man hwclock
*List all PCI devices.
Show a brief list of devices: lspci
Display additional info: lspci -v
Display drivers and modules handling each device: lspci -k
Show a specific device: lspci -s 00:18.3
Dump info in a readable form: lspci -vm
Source: curl cht.sh/lspci
dmidecode – DMI table decoder
dmidecode is a tool for dumping a computer's DMI (some say SMBIOS) ta‐ ble contents in a human-readable format. This table contains a descrip‐ tion of the system's hardware components, as well as other useful pieces of information such as serial numbers and BIOS revision. Thanks to this table, you can retrieve this information without having to probe for the actual hardware. While this is a good point in terms of report speed and safeness, this also makes the presented information possibly unreliable…
Source: man dmidecode
dmidecode Display the DMI (alternatively known as SMBIOS) table contents in a human-readable format. Requires root privileges.
Show all DMI table contents: sudo dmidecode
Show the BIOS version: sudo dmidecode -s bios-version
Show the system's serial number: sudo dmidecode -s system-serial-number
Show BIOS information: sudo dmidecode -t bios
Show CPU information: sudo dmidecode -t processor
Show memory information: sudo dmidecode -t memory
source: curl cht.sh/dmidecode