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
| namespace Protected | |
| { | |
| using System; | |
| using System.Runtime.InteropServices; | |
| internal class Program | |
| { | |
| [DllImport("kernel32.dll")] | |
| public static extern bool ZeroMemory(IntPtr Destination, int Length); | |
| [DllImport("kernel32.dll")] |
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
| Imports System.Runtime.InteropServices | |
| Imports System.Drawing | |
| Module Module1 | |
| <DllImport("kernel32.dll", SetLastError:=True, CharSet:=CharSet.Auto)> | |
| Private Function GetConsoleWindow() As IntPtr | |
| End Function | |
| Sub Main() |
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
| using System; | |
| using System.Net; | |
| using System.Text.RegularExpressions; | |
| namespace lightshotDumper | |
| { | |
| class Program | |
| { | |
| const string IMG404 = "0_173a7b_211be8ff.png"; // 404 | |
| static void Main(string[] args) |
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
| /* | |
| bitcoin = new Regex(@"\b(bc1|[13])[a-zA-HJ-NP-Z0-9]{26,35}\b"); | |
| ethereum = new Regex(@"\b0x[a-fA-F0-9]{40}\b"); | |
| monero = new Regex(@"\b4([0-9]|[A-B])(.){93}\b"); | |
| */ |
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
| private Boolean Exist(By by) //vérifie si un élément existe | |
| { | |
| try | |
| { | |
| this.driver.FindElement(by); | |
| return true; | |
| } | |
| catch(Exception) | |
| { | |
| return false; |
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
| private void Highligh(RichTextBox rtb) { | |
| String[] keywords = { | |
| "@echo", | |
| "echo", | |
| "pause", | |
| "set", | |
| "cls", | |
| "exit", | |
| "del", | |
| "erase", |
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
| @echo off | |
| ::Configuration | |
| SET folderPath=C:\Users\Guillaume\Desktop\fiverrorderFO1B3039F9A5\backuppls\ | |
| SET backupPath=C:\Users\Guillaume\Desktop\fiverrorderFO1B3039F9A5\ | |
| SET SubExcept[0]=sub3 | |
| SET SubExcept[1]=sub4 | |
| SET /A i = 0 | |
| ::ClearBackupFolder | |
| ForFiles /p %backupPath% /s /m *.zip /d -7 /c "cmd /c del @file" |
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
| @ECHO OFF | |
| SETLOCAL enableextensions | |
| :start | |
| SET /P project="project path:" | |
| SET /P save="save path:" | |
| SET tmp=%random% | |
| CLS | |
| FINDSTR /S /B /N /R /C:"#include" %project%\*.c>%tmp% | |
| FOR /f "tokens=*" %%a IN (%tmp%) DO CALL :parse %%a |
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
| @echo off | |
| SET URL=https://umod.org/games/rust/download | |
| SET FILE="./%RANDOM%.zip" | |
| SET FOLDERPATH="C:\Users\Guillaume\Desktop\RustServer\common\rust_dedicated\data\Managed" | |
| ECHO Downloading from %URL% | |
| powershell.exe -c "(New-Object Net.WebClient).DownloadFile('%URL%','%FILE%')" | |
| ECHO Done. | |
| ECHO Extract to current folder | |
| powershell.exe -c "Expand-Archive -Force '%FILE%' ./" | |
| ECHO Done. |
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
| namespace AddRegion | |
| { | |
| using ScriptPortal.Vegas; | |
| using System.Windows.Forms; | |
| using System.Collections.Generic; | |
| public class EntryPoint | |
| { | |
| public void FromVegas(Vegas vegas) | |
| { |
OlderNewer