Friday, April 13, 2018

do you know what's this? mercury fulminate ...mercury and nitric acid...you call this MEMS or what

...again..."Butadiene (also nitrile rubber) forms explosive mixtures with air and oxidizing agents. It may be self-igniting. Should a fire occur, evacuate all personnel from the danger area. Do not extinguish flames due to the possibility of explosive re-ignition"...textiles? ...radical muslums?
...again...
Deltrate 20 drug information: uses, indications, description, generic name. Compare prices for generic deltrate 20 substitutes: Danitrin, Dilcoran, Dipentrate
NDRUGS.COM

Good morning! welcome back to war! another weekend....do you know PENTAERYTHRITYL TETRANITRATE ? yes, you do
Dilcoran (pentaerythrityl tetranitrate) Buy medicines online. Licensed european doctors. Lowest prices. Fast and safe delivery.
EUROMEDS-DOCTOR.COM

Thursday, April 12, 2018

If I want very very serious diplomatic problems...I will be at the american school....i will not be at s. bento...because i want to strike where it hurts more, the cattle, little children...and specially family from the major piece of shit of the little pútugal republic.
ok. let's then radicalize it! what I have here, for start its the "impulse" App on my android. I have an alcatel phone, a RF transmitter, the relay, the electrical match, and the vibration alarm. I have the grenade pryro, a gas bottle, the gasoline gallon, for hidden the IED the emergency blanket, and finally, the sodium nitrophenalate. You might wonder, where's the ammonium fertilizer... at Leroy Merlin store...where's the paraffin wax, at Celeiro store
Ok, Father, this is a quick explanation, of the most scary discipline to over trow them... ok, the screen, has pixels, the pixels run on a matrix vertical and horizontal, the frames are dynamic buffering seconds after seconds, this is all encrypting an image, a site...the pixel is a rgb (colour) and its modulated in wavelets, meaning a radio generating several layers inside the pixel, also uses an encryption algorithm (or several types) as Huffman pyramid, ....so not to be decrypted ...Father, they protect the pixels on non overlapping blocks...this is electronics components ....and this hardware, finally, has a scintillator with radioactive source, probably thorium, detecting the intrusion. Do, you now understand why am I so God damm scared?
GostoMostrar mais reações
Comentar
Comentários
Elsa David do you Father Papa Francisco ?
Gerir
GostoMostrar mais reações
Responder18 min
Elsa David this is not all Papa Francisco ...their architecture of hardware divides the buffering in hundreds of multi channels (frequencies) and harder ...they make hundreds of partitions (dividing the RAM on hundreds of disks)
Gerir
GostoMostrar mais reações
Responder7 min
Elsa David if we could break this pixel data...then Papa Francisco a screen would open, with the very famous elliptic curve....least of the problems...
Gerir
GostoMostrar mais reações
Responder6 min
Elsa David and even least problem...Papa Francisco what the pretentious asshools, call the metadata storage problem...which is very simple using old drupal language
Gerir
GostoMostrar mais reações
Responder5 min
Elsa David so, will Jesus help me?
Gerir
GostoMostrar mais reações
Responder4 min
Elsa David being pragmatic Papa Francisco we can not break this, decipher, decrypt...we only can write a virus
Good morning! welcome back to war! I wish I scored here, guys...could it be that the NSA encrypts RGP pixels with DCT wavelet, and we could cross it with ...this
Kaspersky CoinVault Decryptor is a tool that can decrypt files that were taken hostage by the CoinVault ransomware.

Wednesday, April 11, 2018

I've got a snippet here, saying it all about mirai virus

/*
=================================================================================
Name : wdt_test.c
Version : 0.1
Copyright (C) 2012 by Andre Wussow, 2012, desk@binerry.de
Description :
A simple test for working with the Raspberry Pi BCM2835 Watchdog.
References :
http://binerry.de/post/28263824530/raspberry-pi-watchdog-timer
================================================================================
This sample is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This sample is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
================================================================================
*/
#include <stdio.h>
#include <fcntl.h>
#include <linux/watchdog.h>
int main (int argc, char *argv[])
{
// print infos
printf("Raspberry Pi BCM2835 Watchdog Sample\n");
printf("========================================\n");
int deviceHandle;
int disableWatchdog = 1;
// test watchdog reset via t-param
if (argc > 1) {
if (!strncasecmp(argv[1], "-t", 2)) {
disableWatchdog = 0;
}
}
printf("Disabling watchdog before closing device: %d\n", disableWatchdog);
// open watchdog device on /dev/watchdog
if ((deviceHandle = open("/dev/watchdog", O_RDWR | O_NOCTTY)) < 0) {
printf("Error: Couldn't open watchdog device! %d\n", deviceHandle);
return 1;
}
// get timeout info of watchdog (try to set it to 15s before)
int timeout = 15;
ioctl(deviceHandle, WDIOC_SETTIMEOUT, &timeout);
ioctl(deviceHandle, WDIOC_GETTIMEOUT, &timeout);
printf("The watchdog timeout is %d seconds.\n\n", timeout);
// feed watchdog 3 times with heartbeats
int i;
for (i = 0; i < 3; i++) {
printf("Feeding the dog with a heartbeat.\n");
ioctl(deviceHandle, WDIOC_KEEPALIVE, 0);
sleep(10);
}
if (disableWatchdog)
{
printf("Disable watchdog.\n");
write(deviceHandle, "V", 1);
}
// close connection and return
close(deviceHandle);
return 0;
} https://github.com/binerry/RaspberryPi/blob/master/snippets/c/watchdog/wdt_test.c