Skip to content

Instantly share code, notes, and snippets.

View hash3liZer's full-sized avatar
🚩
/proc/self/fd

Shameer Kashif (Shiri) hash3liZer

🚩
/proc/self/fd
View GitHub Profile
https://8u0blwl3a6.execute-api.ap-south-1.amazonaws.com/api/lsl_aws_secure
@hash3liZer
hash3liZer / xmrig
Last active May 23, 2022 19:32
MM Dets
sudo mm -o xmrpool.eu:9999 -u 85P6w2zNTfk5oNPXbG3HKJAtUy9HtvboCLViLtR9eiFiVnGCcBs5Cy31raA48nqkqs3eDBRD6xbgeVp5p6oMgYBW6F5x6Pf -k --tls --rig-id "none" --randomx-1gb-pages
https://github.com/xmrig/xmrig/releases/download/v6.17.0/xmrig-6.17.0-gcc-win64.zip
https://github.com/xmrig/xmrig/releases/download/v6.17.0/xmrig-6.17.0-linux-x64.tar.gz
@hash3liZer
hash3liZer / OpenFileBox.cpp
Last active August 12, 2022 19:00
Open a File Dialog Box
// Specific Extensions
// https://cpp.hotexamples.com/examples/-/IFileDialog/SetFileTypeIndex/cpp-ifiledialog-setfiletypeindex-method-examples.html
PWSTR OpenFileBox(HWND hWnd) {
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED |
COINIT_DISABLE_OLE1DDE);
if (!SUCCEEDED(hr)) {
return NULL;
}
@hash3liZer
hash3liZer / version.txt
Last active February 17, 2023 12:33
212-windows versioning
1.2
@hash3liZer
hash3liZer / race.py
Created January 21, 2024 16:02
Script for exploiting Race Conditions
#!/usr/bin/python3
'''
A Script for Race Conditions
'''
import requests
import threading
import time
import json