This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global | |
stats socket [email protected]:9999 level admin | |
stats socket /var/run/hapee-lb.sock mode 666 level admin | |
stats timeout 2m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Author: Awcator | |
* Tool to guess the TCP sequence number and breaks that particular tcp connnection. There by providing a good defence for DDOS attacks. | |
* | |
* How?: | |
* Captures ack_seq,seq during 2nd stage of 3 way hand shake and performs attack for 4th hand shake | |
* suppose: 2nd Hand Shake: from port 4444 to port 469996 with SQN,ACK seq=781,ack_seq=694 | |
* then, craft a packet at 4th transaction as, port from 469996 to 4444 with seq as 694 and ack_seq as 781 with flags, Finish,Ack. | |
* Recomute Checksum and send packet | |
* Works on lo, need to create ethernet packets to send over network hardware. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt update | |
sudo apt upgrade | |
#sudo apt install -y xfce4 xfce4-goodies vnc4server novnc websockify python-numpy chromium | |
sudo DEBIAN_FRONTEND=noninteractive apt-get -yq install xfce4 xfce4-goodies vnc4server novnc websockify python-numpy chromium | |
vncserver | |
vncserver -kill :1 | |
echo "#!/bin/bash" > ~/.vnc/xstartup | |
echo 'xrdb $HOME/.Xresources' >> ~/.vnc/xstartup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Match Every Site | |
// @namespace https://targetwebsite.com/ | |
// @version 1.1 | |
// @description Bypass fullscreen/tabswtich/invisbility screen | |
// @author Dev | |
// @match *://*/* | |
// @grant unsafeWindow | |
// ==/UserScript== |