Category: Linux
-
RedHat Packaging Security with yum
Read more: RedHat Packaging Security with yumRedHat comes with a mitigated package called RHSA (RedHat security advisory) This RHSA comes with a unique id like CVE Contain the date of fix and these type packages come…
-
Convert VirtualBox HardDisk To VMware
Read more: Convert VirtualBox HardDisk To VMwarehello in this article we will simply convert vhd file (VirtualBox disk image) to VMware disk our VirtualBox disk is “systemdisk.vhd” we will use qemu emulator to convert the…
-
IPTABLES redirect all ports to one port
Read more: IPTABLES redirect all ports to one porthello this iptables rule to redirect all incoming traffic from all ports to one port example 80 on ip 192.168.1.10 iptables -A PREROUTE -t nat -i eth0 -p tcp –dport…
-
RedHat / Centos Repository you must have
Read more: RedHat / Centos Repository you must haveRedHat and centos come with the default repo so you have to install additional repos to get all your software from yum epel ius remi rpmfroge rpm -ivh http://dl.iuscommunity.org/pub/ius/stable/RedHat/7/x86_64/ius-release-1.0-13.ius.el7.noarch.rpm…
-
TrueCrypt Password bruteforce
Read more: TrueCrypt Password bruteforcehello, guys, this script will simply mount the container with the password form the given password list #!/usr/bin/env python #TrueCrypt Crack Passowrd Based In Dic Attack #Author : N1X import…
-
SMASH THE STACK LEVEL 5
Read more: SMASH THE STACK LEVEL 5still smashing 😀 level5@io:/levels$ ./level05 level5@io:/levels$ ./level05 a a level5@io:/levels$ echo one 😀 let’s see the source code level5@io:/levels$ cat level05.c #include #include int main(int argc, char **argv) { char…
-
SMASH THE STACK LEVEL4
Read more: SMASH THE STACK LEVEL4level 4 😀 level4@io:~$ cd /levels/ level4@io:/levels$ ./level04 Welcome level5 level4@io:/levels$ ./level04 d Welcome level5 level4@io:/levels$ ./level04 $(python -c “print ‘A’ * 1024”) Welcome level5 so i will read the…
-
SMASH THE STACK LEVEL2
Read more: SMASH THE STACK LEVEL2time to play level2@io:/levels$ ./level02 source code is available in level02.c let’s read what it says level2@io:/levels$ cat level02.c //a little fun brought to you by bla #include <stdio.h> #include…
-
SMASH THE STACK Level1
Read more: SMASH THE STACK Level1after login to the ssh server levels located on /levels so let’s play level1 level2@io:/levels$ ls -alh level01 -r-sr-x— 1 level2 level1 1.2K Jan 13 2014 level01 as u notice…
-
NGINX forward visitor real ip to apache
Read more: NGINX forward visitor real ip to apachelet’s assume u have NGINX on port 80 apache on port 8080 in nginx config -> sever config -> virtualhost config location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For…