Facebook Mass Invite to Like script

Categories: tech, Web

today I wrote  a script to help in sending an invitation to like your page this happens when you promote a post for your audience and they interact with your post but they forget to like your page so this script will help you to mass invite them in once 1 – click on the … Read More

Automatic flight ticket script

Categories: Python, Web

python script  to demonstrate  the splinter library this script keep searching till finding a ticket and book it  🙂 rest and wait your reservation number

underc0de 3 WalkThrough

Categories: Python, Security, tech, Uncategorized, Web

loaded the virtual machine and run netdiscover to get the machine IP oot@n1x:~# netdiscover Currently scanning: 192.168.39.0/16 | Screen View: Unique Hosts 4 Captured ARP Req/Rep packets, from 4 hosts. Total size: 240 _____________________________________________________________________________ IP At MAC Address Count Len MAC Vendor —————————————————————————– 192.168.1.1 e8:94:f6:5d:c6:3b 01 060 Unknown vendor 192.168.1.2 00:18:fe:6d:61:27 01 060 Hewlett Packard … Read More

NGINX forward visitor real ip to apache

Categories: Linux, Web

let’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 $remote_addr; proxy_set_header Host $host; proxy_pass http://127.0.0.1:8080; }