Skip to content

Instantly share code, notes, and snippets.

View ozelfatih's full-sized avatar
🎯
Focusing

Fatih Ozel ozelfatih

🎯
Focusing
View GitHub Profile
@ozelfatih
ozelfatih / Active Directory Attacks.md
Created March 14, 2023 15:30 — forked from ssstonebraker/Active Directory Attacks.md
Active Directory Attacks #oscp
@ozelfatih
ozelfatih / wget_vbs
Created April 11, 2018 15:06 — forked from sckalath/wget_vbs
wget vbscript
echo strUrl = WScript.Arguments.Item(0) > wget.vbs
echo StrFile = WScript.Arguments.Item(1) >> wget.vbs
echo Const HTTPREQUEST_PROXYSETTING_DEFAULT = 0 >> wget.vbs
echo Const HTTPREQUEST_PROXYSETTING_PRECONFIG = 0 >> wget.vbs
echo Const HTTPREQUEST_PROXYSETTING_DIRECT = 1 >> wget.vbs
echo Const HTTPREQUEST_PROXYSETTING_PROXY = 2 >> wget.vbs
echo Dim http,varByteArray,strData,strBuffer,lngCounter,fs,ts >> wget.vbs
echo Err.Clear >> wget.vbs
echo Set http = Nothing >> wget.vbs
echo Set http = CreateObject("WinHttp.WinHttpRequest.5.1") >> wget.vbs