Set-ExecutionPolicy -ExecutionPolicy Bypass -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
#!/bin/bash | |
# Check if docker-compose.yml exists in the current directory | |
if [ ! -f "docker-compose.yml" ]; then | |
echo "Error: docker-compose.yml not found in the current directory." | |
exit 1 | |
fi | |
# Pull Docker images (with or without arguments) | |
if [ $# -gt 0 ]; then |
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
#!/bin/bash | |
RESOLV_CONF="/etc/resolv.conf" | |
NEW_NAMESERVERS=( | |
"nameserver 45.90.28.0" | |
"nameserver 45.90.30.0" | |
"nameserver 208.67.222.222" | |
"nameserver 208.67.220.220" | |
"nameserver 8.8.8.8" | |
"nameserver 1.1.1.1" |
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
#include <windows.h> | |
#include <stdio.h> | |
#include <string.h> | |
/* | |
cl /EHsc /MT /nologo /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_USING_V110_SDK71_" quickedit.cpp | |
link /OUT:quickedit.exe /MACHINE:X86 /OPT:REF /SAFESEH /ERRORREPORT:PROMPT /NOLOGO /TLBID:1 /SUBSYSTEM:CONSOLE",5.01" quickedit.obj | |
*/ | |
#pragma comment(lib, "User32.lib") |
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
#/usr/bin/env python3 | |
''' | |
MobaXterm Keygen Originally by DoubleLabyrinth | |
Link OG: https://github.com/flygon2018/MobaXterm-keygen | |
''' | |
import os, sys, zipfile | |
from platform import node as gethostname | |
VariantBase64Table = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=' |
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
#include <Windows.h> | |
#include <Psapi.h> | |
#include <Shlobj.h> | |
#include <sddl.h> | |
#include <shlwapi.h> | |
#include <iostream> | |
#include <string> | |
#pragma comment(lib, "Shell32.lib") | |
#pragma comment(lib, "Shlwapi.lib") |
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
#!/bin/bash | |
package=$1 | |
if [[ -z "$package" ]]; then | |
echo "usage: $0 <package-name>" | |
exit 1 | |
fi | |
package_split=(${package//\// }) | |
package_name=${package_split[-1]} | |
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
package main | |
import ( | |
"bytes" | |
"encoding/json" | |
"fmt" | |
"io" | |
"io/ioutil" | |
"net/http" | |
"net/url" |
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
{ | |
"configurations": [ | |
{ | |
"name": "Win32", | |
"includePath": [ | |
"C:/Program Files (x86)/Windows Kits/8.1/Include/**", | |
"C:/Program Files (x86)/Windows Kits/10/Include/10.0.10240.0/ucrt", | |
"C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include", | |
"${default}", | |
"${workspaceFolder}", |
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
#include <Windows.h> | |
// cl.exe /D_X86_ /EHsc /MT admin.c /link /NODEFAULTLIB /ENTRY:main /MANIFEST /MANIFESTUAC:level='requireAdministrator' /MACHINE:X86 kernel32.lib libcmt.lib | |
// mt.exe -manifest admin.exe.manifest -outputresource:admin.exe;#1 | |
int main() { | |
int const path_len = 32767; | |
wchar_t path[32767] = {0}; | |
DWORD err = 0; | |
STARTUPINFOW si; |
NewerOlder