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
| // ==UserScript== | |
| // @name ABN AMRO – Neutralize KYC Modal (Hard) | |
| // @namespace abnamro.kyc.neutralizer | |
| // @version 2.0.0 | |
| // @match https://*.abnamro.nl/* | |
| // @run-at document-start | |
| // @grant none | |
| // ==/UserScript== | |
| (function () { |
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
| #Le Magasin de l’Intelligence | |
| #Mentale Zuflucht | |
| #Mind Warehouse | |
| #Refúgio Mental | |
| (Fe)MaleASMR | |
| *Piet Visser* | |
| 0phiuchus | |
| 1Cloud9 | |
| 1ShotTV | |
| 1tch |
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
| Achilles | |
| Aegis | |
| Aether | |
| Aetherion | |
| Aetherios | |
| Aetherius | |
| Alaric | |
| Amarok | |
| Amentum | |
| Apexis |
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.ComponentModel; | |
| using System.Diagnostics; | |
| using System.Runtime.InteropServices; | |
| namespace Code_Projects | |
| { | |
| public unsafe class Suscall | |
| { | |
| [DllImport("kernel32", SetLastError = true)] |
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.IO | |
| Imports System.IO.Compression | |
| Imports System.Security.Cryptography | |
| Imports System.Runtime.InteropServices | |
| Public Module TypeExt | |
| <System.Runtime.CompilerServices.Extension> | |
| Public Function QuickCast(Of T)(src As Byte()) As Object | |
| Dim dataPtr As IntPtr = IntPtr.Zero | |
| Try | |
| If src.Length <> 0 Then |