Monday, January 9, 2017

RFID 13.56 MHz / NFC Module for Arduino and Raspberry Pi

I NEED A PEER-T-PEER CONNECTION ON STACK...I NEED TO DISARM THE SECURITY ALARM WITH A TOKEN CRACKER...

/*  
 *  RFID 13.56 MHz / NFC Module
 *  
 *  Copyright (C) Libelium Comunicaciones Distribuidas S.L. 
 *  http://www.libelium.com 
 *  
 *  This program is free software: you can redistribute it and/or modify 
 *  it under the terms of the GNU General Public License as published by 
 *  the Free Software Foundation, either version 3 of the License, or 
 *  (at your option) any later version. 
 *  a
 *  This program 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 General Public License for more details.
 *  
 *  You should have received a copy of the GNU General Public License 
 *  along with this program.  If not, see http://www.gnu.org/licenses/. 
 *  
 *  Version:           1.0
 *  Design:            David Gascón 
 *  Implementation:    Ahmad Saad & Javier Solobera
 */

uint8_t dataRX[35];//Receive buffer.
uint8_t dataTX[35];//Transmit buffer.
uint8_t _UID[4];// stores the UID (unique identifier) of a card.
uint8_t keyAccess[] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF } ;// stores the key or password.
uint8_t address = 0x04;//Address to read.
uint8_t ATQ[2];//Answer to request
uint8_t state;//state of the process
uint8_t aux[16];//Auxiliar buffer. 

void setup()
{
 //Start serial port 115200 bps:
 Serial.begin(115200);
 delay(100);
 Serial.print("RFID/NFC @ 13.56 MHz module started");
 delay(1000);
 //!It is needed to launch a simple command to sycnchronize
 getFirmware();
 configureSAM();
}

void loop()
{
 Serial.print("\n");
 Serial.println("Ready to read...");
 /////////////////////////////////////////////////////////////
 //Get the UID Identifier
 init(_UID, ATQ);
 Serial.print("\n");
 Serial.print( "The UID : ");
 print(_UID , 4);
 /////////////////////////////////////////////////////////////
 //Auntenticate a block with his keyAccess
 state = authenticate(_UID, address, keyAccess);
 Serial.print("\n");

 if ( state == 0) {
  Serial.println("Authentication block OK");
 } else {
 Serial.println("Authentication failed");
 }
 /////////////////////////////////////////////////////////////
 //Read from address after authentication
 state = readData(address, aux);
 Serial.print("\n");

 if (state == 0) {
  Serial.println("Read block OK");
 } else {
  Serial.println("Read failed");
 }

 Serial.print("\n");
 Serial.print("Data readed : ");
 print(aux , 16);
 Serial.print("\n");
 delay(2000);
}
//**********************************************************************
//!The goal of this command is to detect as many targets (maximum MaxTg)
// as possible in passive mode.
uint8_t init(uint8_t *UID , uint8_t *ATQ)   //! Request InListPassive
{
  Serial.flush();

 dataTX[0] = 0x04; // Length
 lengthCheckSum(dataTX); // Length Checksum
 dataTX[2] = 0xD4;
 dataTX[3] = 0x4A; // Code
 dataTX[4] = 0x01; //MaxTarget
 dataTX[5] = 0x00; //BaudRate = 106Kbps
 dataTX[6] = 0x00; // Clear checkSum position
 checkSum(dataTX); 

 sendTX(dataTX , 7 ,23);

 for (int i = 17; i < (21) ; i++){
  _UID[i-17] = dataRX[i];
 UID[i-17] = _UID[i-17];
 }

 ATQ[0] = dataRX[13];
 ATQ[1] = dataRX[14];

 if ((dataRX[9]== 0xD5) & (dataRX[10] == 0x4B) & (dataRX[11] == 0x01)) {
  return 0;
 } else {
  return 1;
 }
}
//**********************************************************************
//!A block must be authenticated before read and write operations
uint8_t authenticate(uint8_t *UID, uint8_t blockAddress, uint8_t *keyAccess)
{
 dataTX[0] = 0x0F;
 lengthCheckSum(dataTX);
 dataTX[2] = 0xD4;
 dataTX[3] = 0x40; // inDataEchange
 dataTX[4] = 0x01; //Number of targets
 dataTX[5] = 0x60; // Authentication code
 dataTX[6] = blockAddress;
 for (int i = 0; i < 6 ; i++) {
  dataTX[i + 7] = keyAccess[i];
 }
 dataTX[13] = UID[0];  dataTX[14] = UID[1];
 dataTX[15] = UID[2];  dataTX[16] = UID[3];
 dataTX[17] = 0x00;
 checkSum(dataTX);
 sendTX(dataTX , 18 ,14);

 if ((dataRX[9]== 0xD5) & (dataRX[10] == 0x41) & (dataRX[11] == 0x00)) {
  return 0;
 } else {
  return 1;
 }
}
//**********************************************************************
//!Write 16 bytes in address .
uint8_t writeData(uint8_t address, uint8_t *blockData)  //!Writing
{
 Serial.print("                ");
 dataTX[0] = 0x15;
 lengthCheckSum(dataTX); // Length Checksum
 dataTX[2] = 0xD4;
 dataTX[3] = 0x40;//inDataEchange CODE
 dataTX[4] = 0x01;//Number of targets
 dataTX[5] = 0xA0;//Write Command
 dataTX[6] = address; //Address  

 for (int i = 0; i < 16; i++) {
  dataTX[i+7] = blockData[i];
 }

 dataTX[23] = 0x00;
 checkSum(dataTX);
 sendTX(dataTX , 24 ,14);  

 if ((dataRX[9]== 0xD5) & (dataRX[10] == 0x41) & (dataRX[11] == 0x00)) {
  return 0;
 } else {
  return 1;
 }
}
//**********************************************************************
//!Read 16 bytes from  address .
uint8_t readData(uint8_t address, uint8_t *readData) //!Reading
{
 Serial.print("                ");

 dataTX[0] = 0x05;
 lengthCheckSum(dataTX); // Length Checksum
 dataTX[2] = 0xD4; // Code
 dataTX[3] = 0x40; // Code
 dataTX[4] = 0x01; // Number of targets
 dataTX[5] = 0x30; //ReadCode
 dataTX[6] = address;  //Read address
 dataTX[7] = 0x00;
 checkSum(dataTX);
 sendTX(dataTX , 8, 30);
 memset(readData, 0x00, 16);  

 if ((dataRX[9]== 0xD5) & (dataRX[10] == 0x41) & (dataRX[11] == 0x00)) {
  for (int i = 12; i < 28; i++) {
   readData[i-12] = dataRX[i];
  }
  return 0;
 } else {
  return 1;
 }
}
//**********************************************************************
//!The PN532 sends back the version of the embedded firmware.
bool getFirmware(void)  //! It is needed to launch a simple command to sycnchronize
{
  Serial.print("                ");

 memset(dataTX, 0x00, 35);
 dataTX[0] = 0x02; // Length
 lengthCheckSum(dataTX); // Length Checksum
 dataTX[2] = 0xD4; // CODE
 dataTX[3] = 0x02; //TFI
 checkSum(dataTX); //0x2A; //Checksum   

 sendTX(dataTX , 5 , 17);
 Serial.print("\n");
 Serial.print("Your Firmware version is : ");

 for (int i = 11; i < (15) ; i++){
  Serial.print(dataRX[i], HEX);
  Serial.print(" ");
 }
 Serial.print("\n");
}

//**********************************************************************
//!Print data stored in vectors .
void print(uint8_t * _data, uint8_t length)
{
 for (int i = 0; i < length ; i++){
  Serial.print(_data[i], HEX);
  Serial.print(" ");
 }
 Serial.print("\n");
}
//**********************************************************************
//!This command is used to set internal parameters of the PN532,
bool configureSAM(void)//! Configure the SAM
{
 Serial.print("               ");

 dataTX[0] = 0x05; //Length
 lengthCheckSum(dataTX); // Length Checksum
 dataTX[2] = 0xD4;
 dataTX[3] = 0x14;
 dataTX[4] = 0x01; // Normal mode
 dataTX[5] = 0x14; // TimeOUT
 dataTX[6] = 0x00; // IRQ
 dataTX[7] = 0x00; // Clean checkSum position
 checkSum(dataTX);

 sendTX(dataTX , 8, 13);
}
//**********************************************************************
//!Send data stored in dataTX
void sendTX(uint8_t *dataTX, uint8_t length, uint8_t outLength)
{
 Serial.print(char(0x00));
 Serial.print(char(0x00));
 Serial.print(char(0xFF)); 

 for (int i = 0; i < length; i++) {
  Serial.print(char(dataTX[i]));
 }

 Serial.print(char(0x00));
 getACK();
 waitResponse();// Receive response
 getData(outLength);
}
//**********************************************************************
//!Wait for ACK response and stores it in the dataRX buffer
void getACK(void)
{
 delay(5);
 waitResponse();
 for (int i = 0; i < 5 ; i++) {
  dataRX[i] = Serial.read();
 }
}
//**********************************************************************
//!Wait the response of the module
void waitResponse(void)
{
 int val = 0xFF;
 int cont = 0x00;
 while(val != 0x00) { //Wait for 0x00 response
  val = Serial.read();
  delay(5);
  cont ++;
 }
}
//**********************************************************************
//!Get data from the module
void getData(uint8_t outLength)
{
 for (int i=5; i < outLength; i++) {
  dataRX[i] = Serial.read();//read data from the module.
 }
}
//**********************************************************************
//!Calculates the checksum and stores it in dataTX buffer
void checkSum(uint8_t *dataTX)
{
 for (int i = 0; i < dataTX[0] ; i++) {
  dataTX[dataTX[0] + 2] += dataTX[i + 2];
 }
 byte(dataTX[dataTX[0] + 2]= - dataTX[dataTX[0] + 2]);
}
//**********************************************************************
//!Calculates the length checksum and sotres it in the buffer.
uint8_t lengthCheckSum(uint8_t *dataTX)
{
 dataTX[1] = byte(0x100 - dataTX[0]);
}

I know about defaulting the panels and replacing the board but I have heard rumors about keypads that will crack the codes and or software. Does anyone know where I could get such a keypad?

About four years ago our company bought a DSC installer code breaker at
the
ISC show in Anaheim, California.
It is called a SEMCO  10-8   Programer
It is a simple looking device that attaches to the keypad wiring of the

control
It has a red & green led, the red led flashes as it is decoding and the

green led lights steady when the process is finished.
To activate you apply power and press into keypad  *8  20 for 1500-1550

panels *8  18 for 2500,  *8  24 for 2550 and 3000 panels
It works by trying all possible combination one at a time, and when it
cracks the code it changes it to 0123
It is not practical to use it in the field, because it can take up to 3

hours to decode one unit, depending on how high the installer code was
for
that panel.
Our problem is there is no address or phone numbers on the instruction
sheet,  we can't find the manufacture
A note at the bottom says contact your SEMCO distributor for any known
version changes.


http://forums.cabling-design.com/security-physical/dsc-installer-code-cracker-21581-.htm


Ultra Fast Programming Speed SuperPro 610P is designed with high programming speed in mind. Our semiconductor manufacturer approved algorithms, precision and clean signals guarantee high programming yield. Special design was made to eliminate overshoot and ground bounce. Algorithms are performed with state machine architecture constructed with FPGA to achieve a ultra-high programming speed.
Tester for Logic Devices and SRAMs SuperPro 610P is also designed for IC testing of various devices such as TTLCMOS Logic(74/4000 series), and SRAM memory devices .

http://www.xeltek.com/universal-programmers/superpro-610p-universal-ic-chip-device-programmer/

Friday, January 6, 2017

My first favourite subject is Heists, my second is scientific investigation; We were talking here about, how we started to speack on the pre history, likes deffs, making only sounds related to what we wanted to get, and to be understood, and Matt said that we didn't had our cognitive well developed; anyway, what makes us think at all? In my opinion, we think because we have some sort of radio waves connecting our senses, probably not hertz, but nervex, or something...like we are a sort of electronic machine controlling chemestry; if we are under electric shocks, or heart artifical support, we are reacting to radio; so i think we could even fly like birds or live under water like fish; if we could domain that radio waves. if the brain waves could domain your physical impulses. our first impulse is to breath by our loans, what if the brain command your ear to breath under another loans connection, like having a breathing membrane?

not artificially as implants but chemical controlled..then you could live on space...


once i started speacking about this stuff with my shrink...he just said...that was my distrurbed which gave me this thoughts


this why I got retired anyway...because i live on an absolut mental retard country

Suicide Attempt by Intravenous Potassium Self-Poisoning: A Case Report

Overdose of potassium is not as frequently encountered in clinical practice as hyperkalaemia due to acute or chronic renal disease. However, potassium overdoses leading to serious consequences do occur. Case Presentation. A 20-year-old nurse student presented with a cardiac arrest with asystole rhythm. Beside the patient were found four 50-mL syringes and empty vials of potassium chloride (20 mL, 10%). After initial resuscitation with epinephrine, 125 mL of a 4.2% intravenous solution of sodium bicarbonate were injected which resulted in the recovery of an effective cardiac activity. The patient recovered without sequelae. Conclusion. The difficulty in this case was to recognize the potassium poisoning. The advanced resuscitation with the use of a specific treatment helped to resuscitate the patient.

We describe a case of suicide attempt by intravenous injection of potassium, which led to heart attack, supported by a medical team of prehospital resuscitation.

https://www.hindawi.com/journals/criem/2012/323818/

If you can get this Dimethylmercury on the blackmarket...you kill anyone without leaving trace


Thursday, January 5, 2017

you kill easy to get, with toothpaste component fluoride e chlorhexidine, also in other items, botle water, shampoo and so on

ORIGINAL WWII GERMAN DORAMAD TOOTHPASTE AND TOOTHBRUSH

 See original listing
Item condition:
--
Ended:
Feb 07, 2014 , 10:58AM
Price:
US $15.00
 
Approximately EUR 14.32
Shipping:
$10.00 Standard International Shipping
Item location:
Saint-Petersburg, default, Russian Federation

Tuesday, January 3, 2017

and so..."developing software for open source linux dvb receivers using the linux operating system..." therefore available at https://openpli.org/


what about cables and antennas..

Teletext Decoding in FAB Network Controller

FAB Network Controller supports the following teletext decoding sources:
  • Hauppauge cards for analogue antenna and CVBS input
  • Hauppauge cards for DVB-T, DVB-C and DVB-S/S2
  • FAB FT-HT 1x cards for teletext decoding from SD/HD-SDI
  • Linux based set top boxes
  • Teletext in TS/IP Streams

"I am not going to talk about loop tuning....Let's go back to our example of a current controller. Suppose we command u = 1A of current, and it takes a command to our output actuator x = 7.2V to reach equilibrium. Great. Now suppose we want u = 2A of current. To do this x = 14.4V. Now suppose we want u = 10A of current. To do this x = 72V. Now suppose we want u = 1000A of current. To do this x = 7200V. Now suppose we want u = 1,000,000A of current... what? You're telling me we're not going to be able to get a million amperes of current out of our system?

How to Build a Fixed-Point PI Controller That Just Works: Part I