-
Notifications
You must be signed in to change notification settings - Fork 12
Make boot2root VM
-
If we want to add a in the sudoers file(/etc/sudoers):
john ALL=(root) /command/that/is/allowed
- This would give user
john
the power to run the mentioned command as root
-
If you need tor for python script:
-
Remove a user from sudoer
sudo deluser USERNAME sudo
-
Send message to another user
mail -s "Your message" <username>
- EX:
mail -s "hey" www-data
- You might need to install mailutils to use
mail
command
-
Restrict user to their own home directory
sudo chown -R user:user userdir/
sudo chmod 0750 userdir/
-
If you want some kind of cronjob setup run
crontab -e
- crontab.guru
-
To make your own man page
$ cp nuseradd /usr/local/man/man8/nuseradd.8
$ gzip /usr/local/man/man8/nuseradd.8
$ man nuseradd
- Portknocking
- You can use
cython
ornuitka
to compile python script to an elf.- nuitka does everything for you.
- If using
cython
then do the following:-
cython file.py --embed
- use
-3
or-2
to use python versions
- use
gcc -Os -I /usr/include/python3.5m -o file file.c -lpython3.5m -lpthread -lm -lutil -ldl
-
- When we need to fix the damn interface name so dynamic dhcp is working
sudo adduser <username>
-
Install vsftpd
sudo apt install vsftpd
-
make a backup copy of the config file.
cp /etc/vsftpd.conf /etc/vsftpd.conf.orig
-
Edit the options accordingly
To be able to display the IP of the machine right when it starts you can edit /etc/issue
IP: \4{eth0}
This only display the IP and if you want something else you can add that too like the name of the machine or something else.
The best thing is to follow this article
https://www.tecmint.com/install-wordpress-on-ubuntu-16-04-with-lamp/
Make sure to verify which is the latest version for PHP and wordpress.
- Install apache2 and then in
var/www/html
will be the default. - Now in
/etc/apache2/sites-available
do the following:cp 000-default.conf <name-of-virtual-host>.conf
- Open that newly creadted
.conf
file and make changes toDocumentRoot
andServerName
values.-
DocumentRoot
- this will be the directory which will have the files for the virtual host -
ServerName
- URL/IP/Domain on which this has to be accessed.
-
ServerAdmin webmaster@localhost
ServerName mehtab.zafar.tech
DocumentRoot /var/www/sites
here when someone try to visit mehtab.zafar.tech
then the apache will use files from /var/www/sites
else for other domain/IP it will use the default configuration.
- Run the following command:
a2ensite <name-of-the-conf-without-extension>
Ex: a2ensite mehtab
- where configuration file name was mehtab.conf
- Now just restart apache
To install postgres on ubuntu you can run:
sudo apt install postgresql
After that you can login as postgres
user and create DB or add users.
- To login as postgres run:
sudo -u postgres psql
- Then you can run following commands to create a new DB and add a new USER which have GRANT on that DB.
create database <DB_NAME>;
create user <USERNAME> with password encrypted password '<your-password>';
grant all privileges on database <DB_NAME> to <USERNAME>;
-
\l
- list all DB -
\du
- list all users -
\c <DBNAME>
- Use the specified DB
This is something that came up when I was talking with @DCAU about making VM etc
If you remove a user, but leave their sudo privileges in place, can a user be created with that same name and exploit the sudo privileges?
- The answer is yes.
-
Created test1 user
-
Give test1 sudo access to apt-get
-
User freddy had access to be able to use adduser and deluser.
-
Freddy deleted test1 user - deluser --home-remove test1 - and then added a new test1 user and gave it a password.
-
Freddy then did a su to test1, and ran the following:
sudo apt-get changelog apt !/bin/sh
#includedir /etc/sudoers.d test1 ALL=(ALL) NOPASSWD: /usr/bin/apt-get freddy ALL=(ALL) NOPASSWD: /usr/sbin/adduser,/usr/sbin/deluser
#includedir /etc/sudoers.d %helpdesk ALL=(ALL) NOPASSWD: /usr/bin/apt-get freddy ALL=(ALL) NOPASSWD: /usr/sbin/adduser,/usr/sbin/deluser
Add group helpdesk groupadd helpdesk
Create user and add to helpdesk group sudo adduser test2 sudo adduser test2 helpdesk
#includedir /etc/sudoers.d %helpdesk ALL=(ALL) NOPASSWD: /usr/bin/apt-get freddy ALL=(ALL) NOPASSWD: /usr/sbin/adduser,/usr/sbin/deluser
Problem with last version, is that user can add themselves to the helpdesk group and then log off and back on with sudo privs of helpdesk.
sudo adduser test2 sudo adduser test2 helpde
- Capture the flag(CTF)
- Making a boot2root VM
- BugBounty notes for Android
- BugBounty notes for WEB
- Starting with (n)vim
- Bluetooth(nothing big)
- Hacking boot2root/ OSCP notes