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
/** | |
* @see {@link http://tools.ietf.org/rfc/rfc4503.txt} | |
*/ | |
public class Rabbit { | |
private static final int[] A = new int[] { 0x4D34D34D, 0xD34D34D3, 0x34D34D34, 0x4D34D34D, 0xD34D34D3, 0x34D34D34, 0x4D34D34D, 0xD34D34D3 }; | |
private static final long MAX_UNSIGNED_INT = Integer.MAX_VALUE * 2l + 2; //2^32 | |
private static final boolean DEBUG = false; | |
private int[] X; | |
private int[] C; |
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
#pragma once | |
#define WIN32_LEAN_AND_MEAN | |
#include <Windows.h> | |
// At least 12 bytes required for this jump | |
void* Detour64(void* source, void* destination, DWORD64 length) { | |
DWORD dwOld; | |
//mov rax,0xABABABABABABABAB | |
//jmp rax |
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 | |
:: This is not my code, the BadRabbit Ransomeware was posted on a following video: | |
:: https://www.youtube.com/watch?v=Y6WOpE92vKc | |
:: Idea for Petya Ransomeware was given on: | |
:: https://www.bleepingcomputer.com/news/security/vaccine-not-killswitch-found-for-petya-notpetya-ransomware-outbreak/ | |
:: I just made this to make it available easily. | |
:: For BadRabbit | |
type NUL > c:\windows\cscc.dat |
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
0x00sec.org | |
10.32.59.31:32204 | |
10.45.35.173:7990 | |
1122qq.weebly.com | |
123movies.co | |
123moviesfull.co | |
123movies.re | |
1337x.io | |
141jav.com | |
1592878.com |
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
/* | |
* A simple learning vector quantization (LVQ) neural network used to map datasets | |
* (right now, however, without a normalization of the input data) | |
* | |
* Copyright (c) stes 2011 | |
*/ | |
import java.io.IOException; | |
import java.util.ArrayList; | |
import java.util.Random; |
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
/* | |
* A simple learning vector quantization (LVQ) neural network used to map datasets | |
* (right now, however, without a normalization of the input data) | |
* | |
* Copyright (c) stes 2011 | |
*/ | |
import java.io.IOException; | |
import java.util.ArrayList; | |
import java.util.Random; |
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
/* | |
PoC WhatsApp enumeration of phonenumbers, profile pics, about texts and online statuses | |
Floated div edition | |
01-05-2017 | |
(c) 2017 - Loran Kloeze - loran@ralon.nl | |
This script creates a UI on top of the WhatsApp Web interface. It enumerates certain kinds | |
of information from a range of phonenumbers. It doesn't matter if these numbers are part | |
of your contact list. At the end a table is displayed containing phonenumbers, profile pics, | |
about texts and online statuses. The online statuses are being updated every |
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
// Copyright 2003-2010 Christian d'Heureuse, Inventec Informatik AG, Zurich, Switzerland | |
// www.source-code.biz, www.inventec.ch/chdh | |
// | |
// This module is multi-licensed and may be used under the terms | |
// of any of the following licenses: | |
// | |
// EPL, Eclipse Public License, V1.0 or later, http://www.eclipse.org/legal | |
// LGPL, GNU Lesser General Public License, V2.1 or later, http://www.gnu.org/licenses/lgpl.html | |
// GPL, GNU General Public License, V2 or later, http://www.gnu.org/licenses/gpl.html | |
// AL, Apache License, V2.0 or later, http://www.apache.org/licenses |
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
/* | |
* To change this template, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package net.forge.util; | |
/** | |
* @author Graham Edgecombe | |
*/ |
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
// Copyright (c) 2006 Damien Miller <djm@mindrot.org> | |
// | |
// Permission to use, copy, modify, and distribute this software for any | |
// purpose with or without fee is hereby granted, provided that the above | |
// copyright notice and this permission notice appear in all copies. | |
// | |
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | |
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | |
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
NewerOlder