sanspie's notes – Telegram
sanspie's notes
838 subscribers
45 photos
1 video
29 files
311 links
Some ctf and coding stuff. Mostly web
https://akarpov.ru/about

Admin: @sanspie
Download Telegram
Channel created
Instaling metasploit on debian
The Metasploit Project is a computer security project that provides information about security vulnerabilities and aids in penetration testing and IDS signature development.

depedencies and intaling from git
sudo apt update && sudo apt install -y git autoconf build-essential libpcap-dev libpq-dev zlib1g-dev libsqlite3-dev
mkdir -p ~/git | cd ~/git | git clone https://github.com/rapid7/metasploit-framework.git | cd metasploit-framework

if ruby not installed
sudo apt install ruby-dev 

Instaling gem
gem install bundler
bundle install

Set up Rest and postgres
sudo apt update && sudo apt-get install -y postgresql postgresql-client
sudo service postgresql start && sudo update-rc.d postgresql enable
run as root user
./msfdb init | ./msfconsole -qx "db_status; exit"

metasploit ussage
https://github.com/rapid7/metasploit-framework/wiki/Using-Metasploit
Channel photo updated
Forwarded from IOSSec
Started my way of linux kernel exploitation yesterday from perfect article about character device drivers and some more internals. (Resource seems to be very interesting, I should dig into it)

link: https://linux-kernel-labs.github.io/refs/heads/master/labs/device_drivers.html
#kernel #linux #drivers