Start Chrome with the following flags:
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
--remote-debugging-port=9222
--remote-debugging-address=0.0.0.0
| #Hi, | |
| #(First, I assume you've tested the VPN and verified that it's actually working, i.e. you can make connections from your Linode and they're routed over the VPN.) | |
| #This is a classic problem: when you connect to the Linode by its public IP address, the return packets get routed over the VPN. You need to force these packets to be routed over the public eth interface. These route commands should do the trick: | |
| #Code: | |
| ip rule add from x.x.x.x table 128 | |
| ip route add table 128 to y.y.y.y/y dev ethX | |
| ip route add table 128 default via z.z.z.z |
| ################################################## | |
| # Packages | |
| # $ sudo apt install -y xclip grc gobuster rlwrap evil-winrm powercat seclists peass | |
| # Install flatpak | |
| # -> https://www.kali.org/docs/tools/flatpak/ | |
| # urlencode: | |
| # $ sudo apt install gridsite-clients | |
| # Python2 pip | |
| # $ sudo sh -c "curl https://bootstrap.pypa.io./pip/2.7/get-pip.py | python2" | |
| # Cool Hollywood screensaver ❤️ |
| // From Oskar Dahlberg's post at: | |
| // http://stackoverflow.com/a/31411628/4725495 | |
| #include <Windows.h> | |
| static NTSTATUS(__stdcall *NtDelayExecution)(BOOL Alertable, PLARGE_INTEGER DelayInterval) = (NTSTATUS(__stdcall*)(BOOL, PLARGE_INTEGER)) GetProcAddress(GetModuleHandle("ntdll.dll"), "NtDelayExecution"); | |
| static NTSTATUS(__stdcall *ZwSetTimerResolution)(IN ULONG RequestedResolution, IN BOOLEAN Set, OUT PULONG ActualResolution) = (NTSTATUS(__stdcall*)(ULONG, BOOLEAN, PULONG)) GetProcAddress(GetModuleHandle("ntdll.dll"), "ZwSetTimerResolution"); | |
| ################################################## | |
| ## PyDefenderCheck - Python implementation of DefenderCheck | |
| ################################################## | |
| ## Author: daddycocoaman | |
| ## Based on: https://github.com/matterpreter/DefenderCheck | |
| ################################################## | |
| import argparse | |
| import enum |