Skip to content

Instantly share code, notes, and snippets.

@mkvtvseries
mkvtvseries / pdf2Word.py
Created August 10, 2019 05:04 — forked from Manav1918/pdf2Word.py
This File is Source code of pdf to word / any text file format converter [GUI] app . This can extract text from pdf and read. then you can ave that text to any file format like word file,text file or python file.
from tkinter import *
from tkinter import filedialog
from tkinter.filedialog import askopenfilename,asksaveasfile
from PyPDF2 import PdfFileReader
#=================open file method======================
def openFile():
file = askopenfilename(defaultextension=".pdf",
filetypes=[("Pdf files","*.pdf")])
if file == "":
<?php
require_once('libs/utils.php');
list( $bot, $host, $username, $password, $post, $title, $content) = $argv;
$site = 'https://' . $host . '/xmlrpc.php';
echo ' Posting to Site : '.'https://' . $host.'/'.PHP_EOL;
@mkvtvseries
mkvtvseries / bitwalletrecover.py
Created January 29, 2018 12:25 — forked from msm595/bitwalletrecover.py
bitwalletrecover.py - recover compressed private keys from your bitcoin wallet. Requires python3, pycoin (https://pypi.python.org/pypi/pycoin), and base58 (https://pypi.python.org/pypi/base58).
import re
import hashlib
import base58
from pycoin.ecdsa import generator_secp256k1, public_pair_for_secret_exponent
def bytetohex(byteStr):
return ''.join( [ "%02X" % x for x in byteStr ] ).strip()
litecoin = [b"\x30", b"\xb0"]
bitcoin = [b"\x00", b"\x80"]
@mkvtvseries
mkvtvseries / bitwalletrecover.py
Created January 28, 2018 13:38 — forked from UdjinM6/bitwalletrecover.py
bitwalletrecover.py - recover compressed private keys from your bitcoin/litecoin/darkcoin wallet. Requires python3, pycoin (https://pypi.python.org/pypi/pycoin), and base58 (https://pypi.python.org/pypi/base58).
## bitwalletrecover.py - recover private keys from your darkcoin wallet
## (this version was not tested with bitcoin/litecoin).
## Requires python3, pycoin (https://pypi.python.org/pypi/pycoin),
## and base58 (https://pypi.python.org/pypi/base58).
##
## Starting with Python 3.4, pip is included by default with the Python binary
## installers. To install pip for older versions 3.x:
##
## sudo apt-get install python3-setuptools
## sudo easy_install3 pip
@mkvtvseries
mkvtvseries / pkprotect.js
Created January 26, 2018 16:15 — forked from 9876691/pkprotect.js
Sam7 js encryption
function pbkdf_aes_key(aes, pObj) {
var pidcrypt = aes.pidcrypt;
var retObj = {};
var count = 1;
var miter = 3;
if(!pObj) pObj = {};
if(pObj.rounds) {
count = pObj.rounds;
}
if(!pObj.salt) {
@mkvtvseries
mkvtvseries / x.js
Created December 12, 2017 08:10 — forked from nachowski/x.js
warpwallet cracker
function getRandomPassword(length) {
var charset = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
var result = "";
if (window.crypto && window.crypto.getRandomValues) {
values = new Uint32Array(length);
window.crypto.getRandomValues(values);
for(var i=0; i<length; i++) {
result += charset[values[i] % charset.length];
}
return result;