Change directory to tools folder
cd /Applications/VMware\ Fusion.app/Contents/Library/VMware\ OVF\ Tool/
Export VM to OVA/OVF
./ovftool --acceptAllEulas /Path/to/VM.vmx /Path/to/VM_export.{ova/ovf}
Change directory to tools folder
cd /Applications/VMware\ Fusion.app/Contents/Library/VMware\ OVF\ Tool/
Export VM to OVA/OVF
./ovftool --acceptAllEulas /Path/to/VM.vmx /Path/to/VM_export.{ova/ovf}
winget-cli
.ps1
at Powershell Administrators: Set-ExecutionPolicy Unrestricted;
IDA
env
change Python 3
path higher than Python 2
pathIDA
IDA
plugina, capa-rules(rules author: herrcore)#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; |
{ | |
"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}", |
package main | |
import ( | |
"bytes" | |
"encoding/json" | |
"fmt" | |
"io" | |
"io/ioutil" | |
"net/http" | |
"net/url" |
#!/bin/bash | |
package=$1 | |
if [[ -z "$package" ]]; then | |
echo "usage: $0 <package-name>" | |
exit 1 | |
fi | |
package_split=(${package//\// }) | |
package_name=${package_split[-1]} | |
#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") |
#/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+/=' |
Set-ExecutionPolicy -ExecutionPolicy Bypass -Force
#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") |