Bitcoin Forum
May 08, 2024, 11:43:04 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Local / Market / Phishing Pages 2017 - AutoBuy on: July 27, 2017, 03:09:05 AM
41 Scam Page Pack  -  All New Designs 2017 - FUD - Code Obfuscated - List Below - Pack $50

Orange Multi-Page Full Info Scam Page Letter Included,

Demo - https://mega.nz/#!bwggyBZS!8oYukIc8mKTt6DX05AUjWeL2Fxtr3xco_Z63Q5IH6kk

--Others Included--
New 2017 USSA BANK Multi-Page Full Info Scam Page,
EC21.com Global B2B Marketplace. Scam-Page (Buyers and Sellers),
New-Drop-Box Doc (All Mail Login - AOL,  GMAIL,  YAHOO,  LIVE-MAIL AND COMPANY EMAIL),
Alibaba Scam-Page (Manufacturer / Supplier),
2017 eBay Verification Scam-Page Undetected,
Cpanel Scam-Page,
Discover Scam-Page (With CC Info),
Skype Scam-Page (With CC Info),
SUNTRUST Bank Multi Full Info Scam Page,
Verified By Visa / MasterCard SecureCode Full Info Scam-Page Undetected,
Apple-Portugal Scam Page with CC Info,
Apple Spain Scam Page with CC Info,
Barclays Bank Multi Full Info Scam Page,
Bank of Montreal (BMO) Multi Full Info Scam Page,
BRED Banque Populaire Multi Full Info Scam Page (The bank that makes you want to act),
Credit Agricole,  (Green Bank) Multi Full Info Scam Page,
Electricite de France,  EDF Scam Page with Full CC ,
Expedia Partner Central Scam Page,
HSBC Multi Full Info Scam Page,
Wellsfargo Bank Multi Full Info Scam Page,
Chase Bank Multi Full Info Scam Page,
Guaranty Trust Bank Nigeria Scam Page (Full Info),
United Bank Of Africa Nigeria 2017 Undetected,
Bank Of America Undetected,
Royal Bank of Canada Scam-Page Undetected,
2017 Pay-Pal Verification Scam-Page Undetected,
Danske Bank Scam-Page (With CC Info),
DHL Scam-Page (login-Info),
Desjardins Group Credit Union (With CC Info),
Microsoft Account Scam Page,
HM Revenue & Customs - GOV.UK (WITH BANK AND CC INFO UK-Tax-System),
Apple iTunes login and Security Breach Scam Page with CC,
2017 Amazon Scam Page,
Zenith Bank Nigeria Scam Page Full Info,
Yahoo Scam Page,
Macquarie Bank Scam Page,
IRS e-services Login and Register Scam Page (TAX),
IRS Tax Refund Scam Page With CC & Bank Infor,
Free.fr Popular French Shopping Site Scam Page



AUTO BUY
>>>   https://satoshibox.com/oahfp8p4rjffzeo4vxpigohq   <<<


Custom Pages available!!!


2  Bitcoin / Mining / AltCoin / Bitcoin Force Share Script / Double Payout on: July 19, 2017, 08:13:24 PM
This script makes it possible to force a Stratum Mining
Pool to accept "invalid" shares by the thousands for each mining pool
round. It is possible to make pure money from this script

##### What is stratum mining #####

Most of the known mining pools allow to use the so called stratum mining
pool protocol. The bitcoin and altcoin miner is configured to use the host
address and port of the stratum miner protocol server.

For example the eligius (http://eligius.st) mining pool offers a stratum
connection for mining. This mining pool is *not* affected by this
vulnerability.

Once connected to the stratum server the miner will "do work" and solve a
mathematical, crypto task. Once it has solved one of this tasks it will
*submit* a so called *share* to the stratum server. The more shares the
miners generate the more they are rewarded after a successful mining round
has completed. The actual reward given to the miner much depends on the
style of reward system used by the mining pool.

Miners submit shares using the method "mining.submit" when operating with
stratum. Client submissions contain:

1. Worker name
2. Job ID
3. ExtraNonce 2
4. nTime
5. Nonce

The server will respond with a successful accepted share response or will
reject the share submit request.

Share submits can be sent at any time to the stratum server. The stratum
server will accept only valid shares and in the case of this particular
vulnerability stratum will accept *one* valid initial share and *thousands*
of shares that follow the initial valid share but are "invalid" because
they do not solve the mathematical task in any way. The vulnerable mining
pool will accept the shares as pure payment of coins if left unnoticed.

===== Listing Number 1. ======

Code:
    this.processShare = function(jobId, previousDifficulty, difficulty,
extraNonce1, extraNonce2, nTime, nonce, ipAddress, port, workerName){
        var shareError = function(error){
            _this.emit('share', {
                job: jobId,
                ip: ipAddress,
                worker: workerName,
                difficulty: difficulty,
                error: error[1]
            });
            return {error: error, result: null};
        };

        var submitTime = Date.now() / 1000 | 0;

        if (extraNonce2.length / 2 !== _this.extraNonce2Size)
            return shareError([20, 'incorrect size of extranonce2']);

        var job = this.validJobs[jobId];

        if (typeof job === 'undefined' || job.jobId != jobId ) {
            return shareError([21, 'job not found']);
        }

        if (nTime.length !== 8) {
            return shareError([20, 'incorrect size of ntime']);
        }

        var nTimeInt = parseInt(nTime, 16);
        if (nTimeInt < job.rpcData.curtime || nTimeInt > submitTime + 7200)
{
            return shareError([20, 'ntime out of range']);
        }

        if (nonce.length !== 8) {
            return shareError([20, 'incorrect size of nonce']);
        }

        if (!job.registerSubmit(extraNonce1, extraNonce2, nTime, nonce)) {
            return shareError([22, 'duplicate share']);
        }


===== Listing Number 1. ======

Code:
    this.registerSubmit = function(extraNonce1, extraNonce2, nTime, nonce){
        var submission = extraNonce1 + extraNonce2 + nTime + nonce;
        if (submits.indexOf(submission) === -1){
            submits.push(submission);
            return true;
        }
        return false;
    };

At listing number 1. you can see the function that processes a submitted
share. It will check for a valid shape of the mining.submit parameters. And
finally call job.registerSubmit(...) at line 211 with this parameters to
check if it handles a duplicate share. It *should* discard a duplicate
share with a shareError and return from this javascript function. When we
look into the registerSubmit function we see the lines:
Code:
*115.* var submission = extraNonce1 + extraNonce2 + nTime + nonce;   
*116.*        if (submits.indexOf(submission) === -1){  
*117.*            submits.push(submission);    
*118.*            return true;  <----- share is accepted  
*119.*        }  
*120.*        return false;     <----- share isn't handled, duplicate
share.

So how can you submit the duplicate shares? It is rather easy. extraNonce1,
extraNonce2, Nonce, nTime are HEX values. And everybody knows that HEX
values can contain ASCII characters.

Let's take an example of extraNonce1 being 0xDEADBEEF. What will
registerSubmit function do with the share if we submit 0xdEADBEEF and then
0xdeADBEEF and then 0xdeaDBEEF and so on and so on. Well: the program will
blindly accept the shares! This is because the registerSubmit function is
case insensitive and the share is still valid by arithmetic.


fully automated script available set and forget!
Support Available


To Auto Buy - Follow - -.->>>>>>   https://satoshibox.com/dyovjevqqkb26zvrsu6ynkpg    <<<<<<<<<


3  Economy / Digital goods / Bitcoin / Altcoin Share Hack Script - Double Share $$$$$$ on: July 19, 2017, 05:27:35 PM
This script makes it possible to force a Stratum Mining
Pool to accept "invalid" shares by the thousands for each mining pool
round. It is possible to make pure money from this script

##### What is stratum mining #####

Most of the known mining pools allow to use the so called stratum mining
pool protocol. The bitcoin and altcoin miner is configured to use the host
address and port of the stratum miner protocol server.

For example the eligius (http://eligius.st) mining pool offers a stratum
connection for mining. This mining pool is *not* affected by this
vulnerability.

Once connected to the stratum server the miner will "do work" and solve a
mathematical, crypto task. Once it has solved one of this tasks it will
*submit* a so called *share* to the stratum server. The more shares the
miners generate the more they are rewarded after a successful mining round
has completed. The actual reward given to the miner much depends on the
style of reward system used by the mining pool.

Miners submit shares using the method "mining.submit" when operating with
stratum. Client submissions contain:

1. Worker name
2. Job ID
3. ExtraNonce 2
4. nTime
5. Nonce

The server will respond with a successful accepted share response or will
reject the share submit request.

Share submits can be sent at any time to the stratum server. The stratum
server will accept only valid shares and in the case of this particular
vulnerability stratum will accept *one* valid initial share and *thousands*
of shares that follow the initial valid share but are "invalid" because
they do not solve the mathematical task in any way. The vulnerable mining
pool will accept the shares as pure payment of coins if left unnoticed.

===== Listing Number 1. ======

Code:
    this.processShare = function(jobId, previousDifficulty, difficulty,
extraNonce1, extraNonce2, nTime, nonce, ipAddress, port, workerName){
        var shareError = function(error){
            _this.emit('share', {
                job: jobId,
                ip: ipAddress,
                worker: workerName,
                difficulty: difficulty,
                error: error[1]
            });
            return {error: error, result: null};
        };

        var submitTime = Date.now() / 1000 | 0;

        if (extraNonce2.length / 2 !== _this.extraNonce2Size)
            return shareError([20, 'incorrect size of extranonce2']);

        var job = this.validJobs[jobId];

        if (typeof job === 'undefined' || job.jobId != jobId ) {
            return shareError([21, 'job not found']);
        }

        if (nTime.length !== 8) {
            return shareError([20, 'incorrect size of ntime']);
        }

        var nTimeInt = parseInt(nTime, 16);
        if (nTimeInt < job.rpcData.curtime || nTimeInt > submitTime + 7200)
{
            return shareError([20, 'ntime out of range']);
        }

        if (nonce.length !== 8) {
            return shareError([20, 'incorrect size of nonce']);
        }

        if (!job.registerSubmit(extraNonce1, extraNonce2, nTime, nonce)) {
            return shareError([22, 'duplicate share']);
        }


===== Listing Number 1. ======

Code:
    this.registerSubmit = function(extraNonce1, extraNonce2, nTime, nonce){
        var submission = extraNonce1 + extraNonce2 + nTime + nonce;
        if (submits.indexOf(submission) === -1){
            submits.push(submission);
            return true;
        }
        return false;
    };

At listing number 1. you can see the function that processes a submitted
share. It will check for a valid shape of the mining.submit parameters. And
finally call job.registerSubmit(...) at line 211 with this parameters to
check if it handles a duplicate share. It *should* discard a duplicate
share with a shareError and return from this javascript function. When we
look into the registerSubmit function we see the lines:
Code:
*115.* var submission = extraNonce1 + extraNonce2 + nTime + nonce;   
*116.*        if (submits.indexOf(submission) === -1){  
*117.*            submits.push(submission);    
*118.*            return true;  <----- share is accepted  
*119.*        }  
*120.*        return false;     <----- share isn't handled, duplicate
share.

So how can you submit the duplicate shares? It is rather easy. extraNonce1,
extraNonce2, Nonce, nTime are HEX values. And everybody knows that HEX
values can contain ASCII characters.

Let's take an example of extraNonce1 being 0xDEADBEEF. What will
registerSubmit function do with the share if we submit 0xdEADBEEF and then
0xdeADBEEF and then 0xdeaDBEEF and so on and so on. Well: the program will
blindly accept the shares! This is because the registerSubmit function is
case insensitive and the share is still valid by arithmetic.


To Auto Buy - Follow - -.->>>>>>   https://satoshibox.com/dyovjevqqkb26zvrsu6ynkpg    <<<<<<<<<


4  Economy / Services / Bitcoin / Altcoin Stratum Pool Mass Duplicate Shares Script on: July 19, 2017, 05:05:53 PM
This script makes it possible to force a Stratum Mining
Pool to accept "invalid" shares by the thousands for each mining pool
round. It is possible to make pure money from this script

##### What is stratum mining #####

Most of the known mining pools allow to use the so called stratum mining
pool protocol. The bitcoin and altcoin miner is configured to use the host
address and port of the stratum miner protocol server.

For example the eligius (http://eligius.st) mining pool offers a stratum
connection for mining. This mining pool is *not* affected by this
vulnerability.

Once connected to the stratum server the miner will "do work" and solve a
mathematical, crypto task. Once it has solved one of this tasks it will
*submit* a so called *share* to the stratum server. The more shares the
miners generate the more they are rewarded after a successful mining round
has completed. The actual reward given to the miner much depends on the
style of reward system used by the mining pool.

Miners submit shares using the method "mining.submit" when operating with
stratum. Client submissions contain:

1. Worker name
2. Job ID
3. ExtraNonce 2
4. nTime
5. Nonce

The server will respond with a successful accepted share response or will
reject the share submit request.

Share submits can be sent at any time to the stratum server. The stratum
server will accept only valid shares and in the case of this particular
vulnerability stratum will accept *one* valid initial share and *thousands*
of shares that follow the initial valid share but are "invalid" because
they do not solve the mathematical task in any way. The vulnerable mining
pool will accept the shares as pure payment of coins if left unnoticed.

===== Listing Number 1. ======

Code:
    this.processShare = function(jobId, previousDifficulty, difficulty,
extraNonce1, extraNonce2, nTime, nonce, ipAddress, port, workerName){
        var shareError = function(error){
            _this.emit('share', {
                job: jobId,
                ip: ipAddress,
                worker: workerName,
                difficulty: difficulty,
                error: error[1]
            });
            return {error: error, result: null};
        };

        var submitTime = Date.now() / 1000 | 0;

        if (extraNonce2.length / 2 !== _this.extraNonce2Size)
            return shareError([20, 'incorrect size of extranonce2']);

        var job = this.validJobs[jobId];

        if (typeof job === 'undefined' || job.jobId != jobId ) {
            return shareError([21, 'job not found']);
        }

        if (nTime.length !== 8) {
            return shareError([20, 'incorrect size of ntime']);
        }

        var nTimeInt = parseInt(nTime, 16);
        if (nTimeInt < job.rpcData.curtime || nTimeInt > submitTime + 7200)
{
            return shareError([20, 'ntime out of range']);
        }

        if (nonce.length !== 8) {
            return shareError([20, 'incorrect size of nonce']);
        }

        if (!job.registerSubmit(extraNonce1, extraNonce2, nTime, nonce)) {
            return shareError([22, 'duplicate share']);
        }


===== Listing Number 1. ======

Code:
    this.registerSubmit = function(extraNonce1, extraNonce2, nTime, nonce){
        var submission = extraNonce1 + extraNonce2 + nTime + nonce;
        if (submits.indexOf(submission) === -1){
            submits.push(submission);
            return true;
        }
        return false;
    };

At listing number 1. you can see the function that processes a submitted
share. It will check for a valid shape of the mining.submit parameters. And
finally call job.registerSubmit(...) at line 211 with this parameters to
check if it handles a duplicate share. It *should* discard a duplicate
share with a shareError and return from this javascript function. When we
look into the registerSubmit function we see the lines:
Code:
*115.* var submission = extraNonce1 + extraNonce2 + nTime + nonce;   
*116.*        if (submits.indexOf(submission) === -1){   
*117.*            submits.push(submission);   
*118.*            return true;  <----- share is accepted   
*119.*        } 
*120.*        return false;     <----- share isn't handled, duplicate
share.

So how can you submit the duplicate shares? It is rather easy. extraNonce1,
extraNonce2, Nonce, nTime are HEX values. And everybody knows that HEX
values can contain ASCII characters.

Let's take an example of extraNonce1 being 0xDEADBEEF. What will
registerSubmit function do with the share if we submit 0xdEADBEEF and then
0xdeADBEEF and then 0xdeaDBEEF and so on and so on. Well: the program will
blindly accept the shares! This is because the registerSubmit function is
case insensitive and the share is still valid by arithmetic.


To Auto Buy - Follow - -.->>>>>>   https://satoshibox.com/dyovjevqqkb26zvrsu6ynkpg    <<<<<<<<<


5  Economy / Digital goods / MEGA.NZ - Dump / Leak / Email / Files / ALL LINKS DECRYPTED on: July 17, 2017, 07:39:36 PM
Mega.nz -  We keep your files safe and encrypted. we never know the filename or content...  We prove you wrong..
Data Dump Includes.

Filetree :

Code:
Total Files,Total Size
696062,19.81Tb

Extension,Total Files,Size
rar,32586,10.97Tb
mkv,3853,2.13Tb
mp4,6870,1.96Tb
avi,3345,1.37Tb
zip,7198,1.05Tb
7z,1257,338.5Gb
rev,341,250.64Gb
iso,134,245.08Gb
wmv,347,216.93Gb
exe,1150,199.9Gb
mp3,2430,100.18Gb
pdf,2313,91.96Gb
ts,123,83.99Gb
flv,283,49.32Gb
mpg,105,43.94Gb
cbr,1608,41.4Gb
ftf,46,38.31Gb
dmg,23,35.38Gb
ecchi,108,33.42Gb
fhd,19,33.19Gb
rmvb,172,32.03Gb
asf,183,31.86Gb
mov,44,31.65Gb
m4v,75,25.79Gb
vns,146,18.96Gb
gz,35,16.13Gb
wav,100,15.29Gb
xap,65,12.3Gb
m2ts,13,12.08Gb
apk,826,11.6Gb
zyb,122,9.31Gb
cbz,281,9.05Gb
img,31,8.46Gb
tp,16,8.4Gb
bin,23,7.25Gb
ciso,8,6.46Gb
hms,83,6.31Gb
dtshd,2,6.12Gb
vob,21,6.05Gb
sitx,22,5.91Gb
obb,6,5.39Gb
__b,4,4.92Gb
__a,3,4.79Gb
gho,1,4.78Gb
flac,54,4.59Gb
tar,21,4.02Gb
wz,14,3.87Gb
mts,6,3.81Gb
ipa,15,3.47Gb
jnx,9,3.24Gb
xz,9,3.24Gb
kz,3,3.09Gb
3gp,19,3.08Gb
cso,8,2.94Gb
mpeg,30,2.93Gb
dts,10,2.93Gb
ipsw,2,2.49Gb
rpf,3,2.17Gb
ova,2,2.05Gb
psd,60,2.03Gb
test,1,1.95Gb
mpq,2,1.89Gb
gfp,2,1.85Gb
nds,14,1.75Gb
wad,103,1.74Gb
bsa,1,1.68Gb
pkg,39,1.34Gb
amn,18,1.34Gb
rm,32,1.31Gb
gcz,1,1.23Gb
dsf,4,1.2Gb
msi,16,1.19Gb
cpb,1,1.16Gb
nrg,2,1.14Gb
md5,20,1.13Gb
m4a,41,1.07Gb
par2,10,1.04Gb
k77,1,1.04Gb
part1,4,1.01Gb
zip ,2,1Gb
svf,3,1017.07Mb
egg,1,1000Mb
dem,33,990.4Mb
xtm,12,951.06Mb
part2,3,906.25Mb
z02,2,900Mb
z01,2,900Mb
z03,2,900Mb
z04,2,900Mb
z06,2,900Mb
z05,2,900Mb
rmap,5,890.48Mb
png,92,880.75Mb
doc,87,860.73Mb
divx,2,850.13Mb
jar,145,837.96Mb
ac3,8,808.51Mb
scs,16,806.77Mb
rwp,1,790.38Mb
webm,4,786.51Mb
mdx,2,723.58Mb
tgz,5,696.07Mb
mka,2,689.3Mb
part3,3,641.36Mb
kfn,23,599.74Mb
r00,5,590.73Mb
anm,8,557.5Mb
mw2 78,1,540.56Mb
nva,3,515.36Mb
jpg,142,505.85Mb
rar_,3,490.27Mb
w03,1,488.28Mb
bar,22,481.8Mb
ra,2,480.45Mb
r16,1,476.84Mb
chd,4,473.55Mb
z15,2,450Mb
z16,2,450Mb
z14,2,450Mb
wbfs,2,448Mb
abs,97,447.63Mb
aca,1,441.74Mb
gxs,3,438.09Mb
asl,23,416.16Mb
r02,3,395.37Mb
wings,1,385.96Mb
epub,120,356.51Mb
lol,1,350Mb
cats,1,350Mb
cul,1,343.54Mb
pck,1,342.05Mb
gba,25,333.19Mb
omod,1,305.13Mb
nki,5,301.31Mb
vdt,3,285Mb
blend,5,279.62Mb
7z old,1,258.34Mb
r01,3,256.04Mb
rtf,6,252.64Mb
bz2,9,241.84Mb
nfi,3,239.26Mb
r17,1,238.42Mb
wlf,3,238.37Mb
pbp,2,235.45Mb
etl,1,229.06Mb
__c,1,223.86Mb
sit,1,221.94Mb
app,2,207.99Mb
z11,1,200Mb
z07,1,200Mb
z09,1,200Mb
z08,1,200Mb
z10,1,200Mb
z12,1,200Mb
z13,1,200Mb
pup,1,196.04Mb
abr,7,192.42Mb
xgk,2,190Mb
ppt,11,177.92Mb
msu,3,171.2Mb
dat,10,166.38Mb
rfcmp,2,165.79Mb
djvu,16,165.62Mb
pps,47,165.18Mb
m2t,1,157.43Mb
sis,3,154.22Mb
prc,53,147.34Mb
ogg,4,147.18Mb
diw,2,147.05Mb
cpk,1,146.42Mb
z43,1,136.72Mb
z44,1,136.72Mb
xzp,1,136.31Mb
sldprt,1,134.1Mb
ict,1,129.65Mb
lgp,1,124.09Mb
mod,4,119.12Mb
3ga,1,117.26Mb
swf,18,111.66Mb
gme,2,106.55Mb
wma,8,106.39Mb
akn,1,100.81Mb
r1,1,100Mb
ac-5,1,100Mb
ac-6,1,100Mb
ac-7,1,100Mb
aw,1,97.85Mb
r03,2,96.33Mb
r14,1,95.37Mb
r09,1,95.37Mb
r11,1,95.37Mb
r12,1,95.37Mb
r13,1,95.37Mb
r08,1,95.37Mb
r07,1,95.37Mb
r04,1,95.37Mb
r05,1,95.37Mb
r06,1,95.37Mb
spk,1,91.52Mb
deb,10,90.69Mb
map,4,86.89Mb
docx,119,86.64Mb
dng,1,86.34Mb
lib4d,3,82.78Mb
vcr,8,80.32Mb
chm,3,79.72Mb
key,7,76.28Mb
pptx,23,74.91Mb
fm,2,73.37Mb
abcd,1,71.92Mb
skp,4,71.48Mb
void,1,71.34Mb
part,1,70.95Mb
wx-m05,1,69.6Mb
wx-m06,1,69.57Mb
wx-m08,1,69.57Mb
wx-m01,1,69.56Mb
wx-m07,1,69.56Mb
wx-m02,1,69.55Mb
wx-m03,1,69.54Mb
wx-m04,1,69.53Mb
xzm,5,65.37Mb
n64,2,64Mb
html,12,63.79Mb
esm,1,61.52Mb
osk,3,60.05Mb
db 017,1,53.45Mb
db 053,1,53.43Mb
db 146,1,53.42Mb
db 065,1,53.42Mb
db 047,1,53.41Mb
db 015,1,53.41Mb
db 014,1,53.41Mb
db 029,1,53.39Mb
db 012,1,53.39Mb
sub,3,52.67Mb
vhd,1,52.02Mb
txt,286,51.34Mb
xls,31,50.99Mb
grf,1,50.59Mb
pea,1,50.23Mb
bc10,2,49.57Mb
game,1,45.95Mb
pptm,2,43.96Mb
c4d,14,41.49Mb
nkm,1,39.26Mb
sf2,1,38.87Mb
sva,3,38.17Mb
part4,1,37.97Mb
log,11,37Mb
orb,1,35.36Mb
szs,16,32.3Mb
rom,1,32Mb
obj,2,31.44Mb
elf,1,31.43Mb
adf,36,30.94Mb
aac,2,30.39Mb
apkg,1,29.33Mb
cmp,5,29.07Mb
a2w,1,28.91Mb
vmod,1,28.32Mb
dream,1,27.72Mb
w3x,6,26.85Mb
dll,7,26.68Mb
mogg,1,26.14Mb
 cbr,1,25.23Mb
germ,1,24.98Mb
ass,52,24.78Mb
sfark,1,24.45Mb
trx,2,23.28Mb
sai,2,22.84Mb
cr2,1,22.35Mb
mp2,1,22.17Mb
dav,1,19.34Mb
plog,1,19.21Mb
r26,1,19.07Mb
hdr,2,18.67Mb
lrf,2,17.53Mb
ppsx,2,17.38Mb
sql,5,17.35Mb
theme,3,17.13Mb
trace,1,16.64Mb
v64,1,16Mb
5,1,14.09Mb
osz,1,13.92Mb
fla,4,13.51Mb
bik,1,13.38Mb
xcf,2,12.08Mb
flp,7,11.9Mb
tco,1,11.63Mb
ai,4,11.36Mb
otf,18,11.03Mb
gbc,7,11Mb
aep,19,10.1Mb
pct,1,10.06Mb
test 1,1,9.8Mb
tnc,1,9.65Mb
lzma,1,9.22Mb
test2,1,9.15Mb
mid,28,8.53Mb
save,2,7.5Mb
wgt,2,7.31Mb
pnt,1,6.87Mb
srt,145,6.47Mb
player,2,6.1Mb
mario,1,6.09Mb
otbm,6,5.79Mb
crp,1,5.74Mb
step,2,5.44Mb
ico,20,5.34Mb
csv,2,5.31Mb
scr,3,4.83Mb
p3t,2,4.79Mb
pbo,4,4.77Mb
lolmod,2,4.65Mb
ndm,9,4.52Mb
txd,3,4.5Mb
xlsx,29,4.15Mb
bmp,2,4.1Mb
smc,3,4Mb
mobi,9,3.83Mb
ipk,1,3.7Mb
psv,1,3.63Mb
stl,5,3.54Mb
sys,3,3.47Mb
topx,7,3.44Mb
bmd,1,3.43Mb
uni,1,3.43Mb
veg,9,3.34Mb
asi,13,3.15Mb
ssu,1,3.14Mb
gadget,7,3.01Mb
bsp,1,2.91Mb
bk2,1,2.91Mb
sl,1,2.83Mb
max,2,2.68Mb
ini,133,2.64Mb
wrpl,1,2.5Mb
crx,2,2.39Mb
reaver,1,2.23Mb
gif,1,2.21Mb
fc3map,1,2.07Mb
reason,2,2Mb
gxf,1,2Mb
fb2,1,1.82Mb
pak,1,1.65Mb
tif,1,1.54Mb
icm,3,1.5Mb
m4r,3,1.44Mb
xml,13,1.39Mb
zw,1,1.26Mb
vpk,1,1.22Mb
ftl,3,1.18Mb
pk3,1,1.14Mb
xlsm,1,1.11Mb
craft,11,1.1Mb
ff,1,1.06Mb
rue,1,1.04Mb
nes,1,1.02Mb
dmp,2,1.01Mb
dds,1,1Mb
sgb,1,1Mb
tpf,2,929.64Kb
gmz,1,885.84Kb
dbc,1,796.43Kb
lang,20,790.22Kb
ttf,6,703.34Kb
vir,1,672.84Kb
kml,1,627.16Kb
htm,3,596Kb
kmz,4,589.64Kb
mht,1,576.64Kb
amr,2,549.42Kb
ejs,1,543.77Kb
gm81,1,541.48Kb
sms,1,512Kb
dsv,1,512Kb
sfv,94,483.34Kb
gp5,10,470.97Kb
cap,2,448.62Kb
skin,1,418.44Kb
xsf,1,395.8Kb
pac,2,388Kb
dctx,1,364Kb
ods,5,363.52Kb
m3u,8,354.87Kb
isp,1,329.41Kb
azw3,2,322.08Kb
lxo,1,318.33Kb
demo,1,312.04Kb
rxdata,1,274.41Kb
face,1,263.54Kb
svg,3,246.41Kb
mds,46,226.02Kb
pwn,3,216.33Kb
idx,1,209.25Kb
dwg,3,205.94Kb
gsc,1,185.51Kb
capx,1,175.89Kb
pam,1,175.18Kb
js,6,164.79Kb
sav,2,160Kb
gp4,4,154.41Kb
osr,1,139.8Kb
pt4hud,1,132.87Kb
sb2,1,127.54Kb
url,2,123.77Kb
aml,3,120.44Kb
xltm,1,117.38Kb
rpt,1,115.74Kb
jdc,4,113.75Kb
msq,1,109.31Kb
ct,4,107.41Kb
java,19,104.04Kb
enc,1,102.99Kb
ove,1,86.95Kb
lxf,1,83.24Kb
fst,1,83.03Kb
pes,1,81.81Kb
honmod,1,79.86Kb
tga,2,79.68Kb
ffx,1,78.13Kb
dic,1,66.12Kb
sk2,1,65.27Kb
kl,7,64.65Kb
reg,5,61.05Kb
rep,2,60.03Kb
dlc,8,59.33Kb
php,6,53.52Kb
dmi,2,52.51Kb
cdr,1,50.09Kb
vbs,1,49.84Kb
midi,4,47.67Kb
xom,1,46.63Kb
tapi,1,46.31Kb
tsi,1,43.62Kb
devpak,1,42.74Kb
mbn,1,41.19Kb
bsg,2,41.16Kb
fbx,2,37.41Kb
cdf,1,35.95Kb
eps,1,35.48Kb
xex,1,32Kb
odt,2,31.61Kb
nif,1,31.29Kb
nfo,6,30.25Kb
scx,1,29.02Kb
plg,1,27.22Kb
yml,1,27.08Kb
fire,1,25.93Kb
rules,2,24.88Kb
cpp,2,24.08Kb
gh,1,23.9Kb
x3d,1,22.7Kb
nsf,1,22.44Kb
fmf,1,21.27Kb
ips,1,20Kb
fdf,1,17.5Kb
drn,1,16Kb
gbx,1,15.07Kb
cfg,3,13.64Kb
font,1,13.06Kb
cub,1,10.97Kb
nxt,1,10.82Kb
py,2,10.46Kb
tpl,3,10.42Kb
bat,5,10.38Kb
sh,3,7.73Kb
json,1,7.21Kb
cue,2,6.86Kb
fx,1,6.74Kb
vpd,2,6.72Kb
def,2,6.44Kb
nmsv,2,5.35Kb
class,1,4.7Kb
svm,1,4.04Kb
a26,1,4Kb
mib,1,3.99Kb
prop,1,3.63Kb
nps,1,3.35Kb
index,1,3.34Kb
esp,1,3.18Kb
yrp,4,2.97Kb
pyc,1,2.81Kb
pd,1,2.81Kb
cnc,1,2.48Kb
pde,1,2.45Kb
iim,1,1.98Kb
jad,2,1.95Kb
ccd,1,1.55Kb
ydk,2,1.27Kb
fstab,1,1.18Kb
vcf,1,1.08Kb
sfo,1,1.02Kb
tg,1,988B
npc,1,862B
lnk,1,760B
spt,1,617B
m3u8,1,583B
conf,2,570B
trf,1,489B
psc,1,454B
prj,3,426B
md5sum,3,369B
curves,1,334B
list,1,213B
ahk,1,143B
bmo,1,8B
URL,Source,Filename,Size
"https://mega.co.nz/#!g8lBFTbD!X1kXz2haUSsiv3j1DucQK8ZR_tcDKRR_WsAqNLNh9s0","","LatiosGames - Call of Duty Advanced Warfare.rar","28.66Gb"
"https://mega.co.nz/#!QtsRhDBY!bW6udSH7CPT7-qcrC-tmRsM3LOVOdV3yVvpIq8yITpE",","Roleplay Heaven 548.rar","22.43Gb"
"https://mega.co.nz/#!5xBSAKCT!xc8BaD1kDIK4m7J7eoXUpJ_Mb4C6e5XGbGcvizONYlg","","Uploads by MillionDollarExtreme.rar","20.86Gb"
"https://mega.co.nz/#!A81gDSoY!qw7NQuOhKfoEtqLIGgrvLZisQWQhqPJMnre3Dpy_mbs","","Michel Thomas Complete V3.rar","20.38Gb"
"https://mega.co.nz/#!Fpw3yYCK!wwkhMjgz4bf7-IU-IUz5sPbk-qaJhx3S5lEwVn20rWU","","s-zel-ygs-lys_3.rar","19.28Gb"
"https://mega.co.nz/#!h8YjxL6a!HeBlK2JL9-R3y9qJMX7lVEoG2lZNYsa3MAHrt2MF3T8","","AT-7 N.Rutoje.mov","18.92Gb"
"https://mega.co.nz/#!PMRkjYab!suTwaMeuH4V18f0_RgFTbXjBLM8F8eykfdlBcovlgLk",","Teknogods MW3 Extract & Play.zip","17.85Gb"
"https://mega.co.nz/#!QMtg2ayB!NKxbPCB6cqbF-0n7URBeEVQJ6SdfpFKlqzntMySpM8I","","WoW ivalice - Copie.rar","17.73Gb"
"https://mega.co.nz/#!NcAmDKwT!LTQJyyvN_m3YWoa92kUGsU1VxT8quuL8xedvtZCuD_E","","El Puerco (By Rubboy).rar","14.1Gb"
"https://mega.co.nz/#!EhhgAAYa!IOnMrBo_ArUSNqmc4ngiP2TRfKgnUfcMPz8Tup2i8NY",","DmC Devil May Cry.rar","13.27Gb"
"https://mega.co.nz/#!txFl2b5C!8S8qoKzkewcg0O3wqlDTB4uB7Af4o2d0BOteLFWFHJY","","OS X Mavericks AMD x64.rar","12.51Gb"
"https://mega.co.nz/#!SZc0SAib!oplHUzDj1aHSNpnk4Y8AqGnNkpt0r8vrxvi2qovOgxI",,"The Evil Within.rar","12.47Gb"
"https://mega.co.nz/#!ndF3HYiS!TZ9qkBD_D60qs7Sv4GVWJi2_bEpbPh1z_cpW4YcXVwQ",","LatiosGames - The Evil Within.rar","12.44Gb"
"https://mega.co.nz/#!wMAAQDRK!eHOv3ahjM7eeh3yVWhcAsSJ4Pr2_GpIqA2JTGgtvvWM",,"HE-MAN E OS MESTRES DO UNIVERSO 1-temporada.F1l3w.4r.3z.rar","12.15Gb"
"https://mega.co.nz/#!pABwhJ5J!OA-iyy-whlrv8SRiosN_jGnD2QU8TGDXmwTB5eFDbGg","","HE-MAN E OS MESTRES DO UNIVERSO 2-temporada.F1l3w.4r.3z.rar","12.1Gb"
"https://mega.co.nz/#!cxs1XIoa!BKPU2Ua4hPuElkzkL-M0G2GPvLChmdqRXQCT18auziI",,"K rri Anratez (By Rubboy).rar","11.93Gb"
"https://mega.co.nz/#!Q9R2ALBA!fDhprULaSRvCRoIjcYtgk-NXd8pYvxJlEfAWpMRQu3w","","SAAB_Windows XP Pro SP3.vmwarevm.zip","11.62Gb"
"https://mega.co.nz/#!7c5QCIoA!BclPQkiRkRFZiZDO5a_RIhRvGFkRgw3AWPhyB-z9Ps0","","Hacia Rutas Salvajes(mega-foro.com).mkv","11.6Gb"
"https://mega.co.nz/#!s9t3HAYK!rPEtOVsyJUk7jgPkuvMBD2Vh2nTUi-l2bensa_ItN10","","DBZMTTREZE  201-250.rar","11.19Gb"
"https://mega.co.nz/#!GE90DAIC!2356dI1YaC-wxE5mTmToaHVrkyORipeQwKTDrnoSoWM","","機動戦士ガンダムSEED Part 1.rar","11.16Gb"
"https[Suspicious link removed]QCY!KN_TZGXLruIK1lt04RvhOJarVOjXv3mn6QMqyLt5STw",,"biblio calibre papyrefb2.zip","10.8Gb"
"https://mega.co.nz/#!oUNBEboI!cU5ERgwD-sot_7XiDV1-aBUWAM1DrDEBAU_3AA6bRFY",","Yo Rubbot (By Rubboy).rar","10.69Gb"
"https://mega.co.nz/#!2lhGQYZQ!IBPycNbCFVwmU7_qZ9YjOtI4kyWEbVx0NUJoymcPyN4",","fullprogramlarindir.com-DRP_15.6_Full.iso","10.23Gb"
"https://mega.co.nz/#!ssBzhZ7K!DRm24hAkyds4Ru30uaoizjK2JONajN8YOB4FKiV6GzM",","Halo 4 Maps.rar","10Gb"


Email -
Code:
MIME-Version: 1.0
Date: Wed, 12 Oct 2016 04:17:26 +0000
To: "Kim Dotcom" <comdotkim@gmail.com>
Subject: Re: Hello from a MEGA.nz developer
From: mega.nz@hushmail.com
In-Reply-To: <CACQX2tbYmT5O8gYtUF5Jn2MmCCU7W1j-mDVPBgEOBPko7Y+AGA@mail.gmail.com>
References: <20160827063014.951A520129@smtp.hushmail.com> <CACQX2tZC3bXUSVo76O_9oPLCa8e4B0DRxKy-5-cyDgJvGZm0Eg@mail.gmail.com> <20161005005026.B79784060B@smtp.hushmail.com> <CACQX2tbYmT5O8gYtUF5Jn2MmCCU7W1j-mDVPBgEOBPko7Y+AGA@mail.gmail.com>
X-hush-end-of-body-position: 181
Content-Type: multipart/alternative;
boundary="=_0204670def719d6bd34a8ceac523e0f9"

--=_0204670def719d6bd34a8ceac523e0f9
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset="UTF-8"

Hi,

I've been watching https://www.youtube.com/watch?v=QFPTwAV4P0A, it's
amazing.

I'm eager to send you my CV. When do you think will MU2 be hiring?

Cheers,
 Sent using Hushmail
On 10/5/2016 at 5:26 AM, "Kim Dotcom"  wrote:Agreed. How's life at
Mega?

On Wednesday, October 5, 2016,   wrote:

Hi there,

I believe whether we work together or not, MU2 should be build on top
of IPFS

https://www.youtube.com/watch?v=HUVmypx9HGI

Cheers,
On 10/3/2016 at 7:25 AM, mega.nz@hushmail.com wrote:Best of lucks
here!

https://twitter.com/KimDotcom/status/782838350604492801
 Sent using Hushmail
On 9/5/2016 at 5:32 AM, "Kim Dotcom"  wrote:Hello,
Sorry for the late reply. I'm a little busy with the hearing and our
imminent fund raising. May I know a bit more about your current role
with Mega? You can rely on my discretion, even if we should not work
together.
Kind regards,Kim

On Saturday, August 27, 2016,   wrote:
Hello Kim,

I'm a MEGA developer and I'd like to know more about your MegaUpload
2.0 project. It seems very interesting for what I read on the
Internet.

Are you hiring developers already?[1] I'd like to send you my CV if
you are hiring, I believe my skills will be useful, I've learned a lot
working at MEGA.

I don't expect a quick answer, I believe you are super busy with your
trial and everything.

[1] https://twitter.com/KimDotcom/status/751172640761450496
--
 Sent using Hushmail
--
PRIVILEGED & CONFIDENTIAL COMMUNICATIONS This email and all rights
associated with it are the property of Kim Dotcom.It contains material
for which legal professional privilege is claimed. The contents of
this email may not be examined, removed or reproduced without my
express written permission by Kim Dotcom. The information contained in
this e-mail message and any accompanying files is or may be
confidential. It is intended only for the addressee. If you are not
the intended recipient, any use, dissemination, reliance, forwarding,
printing or copying of this e-mail or any attached files is
unauthorised. This e-mail is subject to copyright. No part of it
should be reproduced, adapted or communicated without the written
consent of the copyright owner. If you have received this e-mail in
error please advise the sender immediately by return e-mail or
telephone and delete all copies. Kim Dotcom does not guarantee the
accuracy or completeness of any information contained in this e-mail
or attached files. Internet communications are not secure, therefore
Kim Dotcom does not accept legal responsibility for the contents of
this message or attached files.
--
PRIVILEGED & CONFIDENTIAL COMMUNICATIONS This email and all rights
associated with it are the property of Kim Dotcom.It contains material
for which legal professional privilege is claimed. The contents of
this email may not be examined, removed or reproduced without my
express written permission by Kim Dotcom. The information contained in
this e-mail message and any accompanying files is or may be
confidential. It is intended only for the addressee. If you are not
the intended recipient, any use, dissemination, reliance, forwarding,
printing or copying of this e-mail or any attached files is
unauthorised. This e-mail is subject to copyright. No part of it
should be reproduced, adapted or communicated without the written
consent of the copyright owner. If you have received this e-mail in
error please advise the sender immediately by return e-mail or
telephone and delete all copies. Kim Dotcom does not guarantee the
accuracy or completeness of any information contained in this e-mail
or attached files. Internet communications are not secure, therefore
Kim Dotcom does not accept legal responsibility for the contents of
this message or attached files.

--=_0204670def719d6bd34a8ceac523e0f9
Content-Transfer-Encoding: quoted-printable
Content-Type: text/html; charset="UTF-8"

<span style=3D"font-family: Arial; font-size: 13px;">Hi,<br><br>I've been w=
atching <a href=3D"https://www.youtube.com/watch?v=3DQFPTwAV4P0A">https://w=
ww.youtube.com/watch?v=3DQFPTwAV4P0A</a>, it's amazing.<br><br>I'm eager to=
 send you my CV. When do you think will MU2 be hiring?<br><br>Cheers,<br><b=
r>
<br>
Sent using Hushmail<br>
<br><br>On 10/5/2016 at 5:26 AM, "Kim Dotcom" &lt;comdotkim@gmail.com&gt; w=
rote:<blockquote style=3D"border-left:solid 1px #ccc;margin-left:10px;paddi=
ng-left:10px;">Agreed. How's life at Mega?<span></span><br><br>On Wednesday=
, October 5, 2016,  &lt;<a>mega.nz@hushmail.com</a>&gt; wrote:<br><blockquo=
te class=3D"gmail_quote" style=3D"border-left:1px #ccc solid;padding-left:1=
ex;margin:0 0 0 .8ex;"><span style=3D"font-family:Arial;font-size:13px;"><b=
r>Hi there,<br><br>I believe whether we work together or not, MU2 should be=
 build on top of IPFS<br><br><a target=3D"_blank" href=3D"https://www.youtu=
be.com/watch?v=3DHUVmypx9HGI" onclick=3D"window.open('https://www.youtube.c=
om/watch?v=3DHUVmypx9HGI');return false;">https://www.youtube.com/watch?v=
=3DHUVmypx9HGI</a><br><br>Cheers,<br><br><br>On 10/3/2016 at 7:25 AM, <a>me=
ga.nz@hushmail.com</a> wrote:<blockquote style=3D"border-left:solid 1px #cc=
c;margin-left:10px;padding-left:10px;"><span style=3D"font-family:Arial;fon=
t-size:13px;">Best of lucks here!<br><br><a target=3D"_blank" href=3D"https=
://twitter.com/KimDotcom/status/782838350604492801" onclick=3D"window.open(=
'https://twitter.com/KimDotcom/status/782838350604492801');return false;">h=
ttps://twitter.com/KimDotcom/status/782838350604492801</a><br><br><br>
<br>
Sent using Hushmail<br>
<br><br>On 9/5/2016 at 5:32 AM, "Kim Dotcom" &lt;<a>comdotkim@gmail.com</a>=
&gt; wrote:<blockquote style=3D"border-left:solid 1px #ccc;margin-left:10px=
;padding-left:10px;">Hello,<div><br></div><div>Sorry for the late reply. I'=
m a little busy with the hearing and our imminent&nbsp;fund raising. May I =
know a bit more about your current&nbsp;role with Mega? You can rely on my&=
nbsp;discretion, even if we should not work together.&nbsp;</div><div><br><=
/div><div>Kind regards,</div><div>Kim<span></span><br><br>On Saturday, Augu=
st 27, 2016,  &lt;<a>mega.nz@hushmail.com</a>&gt; wrote:<br><blockquote cla=
ss=3D"gmail_quote" style=3D"border-left:1px #ccc solid;padding-left:1ex;mar=
gin:0 0 0 .8ex;"><span style=3D"font-family:Arial;font-size:13px;">Hello Ki=
m,<br><br>I'm a MEGA developer and I'd like to know more about your MegaUpl=
oad 2.0 project. It seems very interesting for what I read on the Internet.=
<br><br>Are you hiring developers already?[1] I'd like to send you my CV if=
 you are hiring, I believe my skills will be useful, I've learned a lot wor=
king at MEGA.<br><br>I don't expect a quick answer, I believe you are super=
 busy with your trial and everything.<br><br>[1] <a target=3D"_blank" href=
=3D"https://twitter.com/KimDotcom/status/751172640761450496" onclick=3D"win=
dow.open('https://twitter.com/KimDotcom/status/751172640761450496');return =
false;">https://twitter.com/KimDotcom/status/751172640761450496</a><br>--<b=
r>
Sent using Hushmail<br>
</span></blockquote></div><br><br>-- <br><div>PRIVILEGED &amp; CONFIDENTIAL=
 COMMUNICATIONS</div><div>&nbsp;</div><div>This email and all rights associ=
ated with it are the property of Kim Dotcom.</div><div>It contains material=
 for which legal professional privilege is claimed. The contents of this em=
ail may not be examined, removed or reproduced without my express written p=
ermission by Kim Dotcom. The information contained in this e-mail message a=
nd any accompanying files is or may be confidential. It is intended only fo=
r the addressee. If you are not the intended recipient, any use, disseminat=
ion, reliance, forwarding, printing or copying of this e-mail or any attach=
ed files is unauthorised. This e-mail is subject to copyright. No part of i=
t should be reproduced, adapted or communicated without the written consent=
 of the copyright owner. If you have received this e-mail in error please a=
dvise the sender immediately by return e-mail or telephone and delete all c=
opies.&nbsp;Kim Dotcom&nbsp;does not guarantee the accuracy or completeness=
 of any information contained in this e-mail or attached files. Internet co=
mmunications are not secure, therefore&nbsp;Kim Dotcom&nbsp;does not accept=
 legal responsibility for the contents of this message or attached files.</=
div><br></blockquote></span></blockquote></span></blockquote><br><br>-- <br=
><div>PRIVILEGED &amp; CONFIDENTIAL COMMUNICATIONS</div><div>&nbsp;</div><d=
iv>This email and all rights associated with it are the property of Kim Dot=
com.</div><div>It contains material for which legal professional privilege =
is claimed. The contents of this email may not be examined, removed or repr=
oduced without my express written permission by Kim Dotcom. The information=
 contained in this e-mail message and any accompanying files is or may be c=
onfidential. It is intended only for the addressee. If you are not the inte=
nded recipient, any use, dissemination, reliance, forwarding, printing or c=
opying of this e-mail or any attached files is unauthorised. This e-mail is=
 subject to copyright. No part of it should be reproduced, adapted or commu=
nicated without the written consent of the copyright owner. If you have rec=
eived this e-mail in error please advise the sender immediately by return e=
-mail or telephone and delete all copies.&nbsp;Kim Dotcom&nbsp;does not gua=
rantee the accuracy or completeness of any information contained in this e-=
mail or attached files. Internet communications are not secure, therefore&n=
bsp;Kim Dotcom&nbsp;does not accept legal responsibility for the contents o=
f this message or attached files.</div><br></blockquote></span>
--=_0204670def719d6bd34a8ceac523e0f9--

Admin Logins :


Code:
{"_id":{"$oid":"572bc682886688b1378b4567"},"email":"mo@mega.co.nz","isAdmin":true,"loginKey":"XhVaTPrFfTs","permissions":["","admin"],"publicKey":"AAAAoQAAAB0AAABlAAAAxwAAAJMAAAB-AAAAIQAAAAYAAABWAAAAxwAAALoAAAB9AAAAHwAAAEMAAACWAAAAdQAAAJ0AAAChAAAAFAAAANMAAAA3AAAABQAAAE0AAADCAAAAgwAAAPoAAADJAAAAAQAAAJ4AAAAhAAAAIAAAAHU","registerHash":"","secretKey":"1kvVw6Xgn2mgvGINr8fRUJTJMQ7MxFY4NF6ia9PJkPtlt0Wni4KLEekGWa8W6jgc8b9mrnAkaunDDOw-i8eVHnaFIkMTgqHNa09Wr2QgRJ7Y92p6l-nTGtA4oMf4uiEaCloSq-DtqPZY2-z6DudFdN42Q3i137zAdSoQh6kzpqU","userData":{"$binary":"WUL+w1A1lXpV9Tbz/qcyW6UbRqgOWrnGQSe5/zZV7mh+XHsmiFeF7P/w","$type":"00"}}
{"_id":{"$oid":"572bdb67886688a4388b4567"},"email":"bk@mega.co.nz","isAdmin":true,"loginKey":"YiTTv1R-JLWMRIrl1DBvsZpZQ5-ReDVUa3RWbnyU8qY=","permissions":["",""],"publicKey":"6S32Hsr5bsf_ZzbK2Qki5rvaMGSqMa9uNuDhCDPFSMg=","registerHash":"H13AyfxS-PeoGVRTgYKe9r88BR9gth-t1pnNof_AyatdksIhdLeUbzN92XuDL4Szi6K9cbWizxo2bSPIDUkRMTdvzl3UWpE3AaKELf64y3T_eGlvka9WE7-Po2t7lN4rmWxRM5FfxSqH70Zv2Njs6nVPL_tbQANqVSwztNhU02o=","secretKey":"AVjvyXpGVpOTGaL7h-ECtMQmK_0mJCmhoHBWr9oaeLk="}
{"_id":{"$oid":"572bdb91886688a6388b4567"},"email":"stephenh@mega.co.nz","isAdmin":true,"loginKey":"ayHFdei4EUE","permissions":["",""],"publicKey":"AAAADQAAACEAAADXAAAA8wAAAMsAAAD_AAAACgAAAMsAAADsAAAAmwAAAHQAAACMAAAAPgAAANgAAAATAAAAygAAAEkAAABJAAAAMAAAADUAAAAiAAAAjwAAABkAAAD-AAAAlgAAAFEAAACmAAAApAAAACMAAADbAAAAWAAAAAU","registerHash":"","secretKey":"8hRgDilVeqZ2xQrtD8ppNeTK32xY2MBQfswsZs4GwXXKbrg-fEy4kFfv0PjylY21oIY5z9_RsrfzYSVXJNyVMlgdm6ogUcr6YFgK6wCW0fG_iAv_KyKD3sQpGK6_4qpsEUfFL60EbFwJyHHefBdNvM_6GRcZeZwgxWWTuDo7Qpo","userData":{"$binary":"GXeOmkOqZuo9lxZLNPYa1KTCr2DnNduzmFExMs0V03YEz27G77NVBrIr","$type":"00"}}
{"_id":{"$oid":"5733879b8866880d5f8b4567"},"email":"ad@mega.co.nz","isAdmin":false,"loginKey":"k3itOYQGwoU","permissions":["","corporate"],"publicKey":"AAAALwAAAFsAAAAkAAAAuQAAAOIAAAAiAAAAXAAAAOEAAACBAAAAoAAAAOgAAADGAAAAnAAAAAoAAABSAAAAjAAAAGAAAABwAAAA7gAAAJkAAADaAAAA5AAAABoAAACeAAAAIwAAABgAAADeAAAAYgAAAEAAAADlAAAARgAAAFs","registerHash":"","secretKey":"OsIQHgYl7R3UyZArk4L_UsUX8Y9T-xVld81BwJkPjr35lq5lzDlw


Includes - Email Exchange - Admin Keys - Decrypted File Tree - Full Server Backend - SQL & CSV data.


Auto Buy -  https://satoshibox.com/u7nmbwjkuhsa57zeuzxop8sq

Dumping Shit Daily..... Enjoy... FileBreakers.

Others Available - OneDrive / Mail.RU / Protonmail /
6  Bitcoin / Bitcoin Technical Support / Watch Address / Lost Private Key on: July 04, 2017, 11:36:41 AM
Ok so I stupidly added all my coins to a watch address now I cant seem to find the private key for them.. I still have the wallet.dat file and password but the coins seem to be stuck now in this watch address.   Please help..   $500,000 of coins now stuck....

Is there any way to recover the key??

7  Economy / Investor-based games / MineKing - Block Breakers on: June 30, 2017, 02:35:48 AM
Broken


Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!