Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Made comments in Dutch and menu in dutch #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions README_nl.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# HackCube-Special
<p align="center"><img alt="PICTURE logo" src="https://file-temp.oss-cn-beijing.aliyuncs.com/cube.png" width="200"></p>
<p align="center">
💰 <a href="https://shop142307030.taobao.com/?spm=a230r.7195193.1997079397.2.8gOnKF">Aankopen</a> |
📖 <a href="https://github.com/UnicornTeam/hackcube-mini/wiki">Project Documentatie</a> |
🌐 <a href="https://unicorn.360.com/hackcube">Community</a><br>
<br>
</p>
## HackCube-Special Wat is het?

### HackCube-Special is een draagbaar radioplatform voor hardwaredetectie om op meerdere radiofrequentiebanden reverse-analyse van omringende RF-signalen te vergemakkelijken.

## Wat kan het doen.

### Op dit moment kunt u het kaartnummer van de `EM41XX` (125 KhHz) lezen, u kunt het kaartnummer van de` / `blast` uit de EM41XX-serie` simuleren ', maar dit onderdeel is niet bijzonder stabiel. Vervalsing van het signaal 'autobanddruksensor', de omgekeerde signaaldemodulatie van de 'auto-afstandsbediening' (HCS-chip), kan `sniffing / zenden / stralen 'aanvallen op de' vaste code '(224X, 226X) uitvoeren en kan Intelligente interferentie `/` gewelddadige interferentie in de `` sub1G`-band van het RF-signaal, kan het apparaat van de `nRF24l01` sniffen en maken. En kan het` HID`-apparaat (`toetsenbord`,` muis`) pseudo-creëren `wifi`-methode om` playload` in te voeren.

## Gebruik
> 1. Schakel de HackCube Special -stroomknop in. Statuslampje geeft normaal blauw weer
>
> 2.Zoek en link naar draadloze hotspot "HackCubeSpecial_XX: XX: XX", wachtwoord: "hackcube"
>
> 3.Verbind met een internet browser http://192.168.5.1
>

84 changes: 84 additions & 0 deletions Software/ATmega32U4_nl/ATmega32U4_nl.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
/*
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@ @@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@
@@@@@ @@@@@@@@@@@@@@@@@@@@@@@ @@@@@
@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@
@@@@@ @@@@@ @@@@@@@@@@@@@@@@@@ @@@@@
@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@
@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@
@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@
@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@
@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@
@@@@@ @@@@@@@@@@@@@@@@@@@@ @@@@@
@@@@@ @@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@ @@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@
@@@@@ @@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@
@@@@ @@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@
@@@@ @@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@
@@@@ @@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@
@@@@@ @@@@@@@@@@@@@@@@@ @@@@@@@@@@@
@@@@@ @@@@@@@@@@@@@@@@@ @@@@@@@@@
@@@@@ @@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
_ _ _
| | | | | |
| |__ __ _ ___ | | __ ___ _ _ | |__ ___
| '_ \ / _` | / __|| |/ // __|| | | || '_ \ / _ \
| | | || (_| || (__ | <| (__ | |_| || |_) || __/
|_| |_| \__,_| \___||_|\_\\___| \__,_||_.__/ \___|

Author: mobier
Email: [email protected]
Git repository: https://github.com/UnicornTeam/HackCube-Special
*/

long freq_cc1101 = 315000000; //Stel de CC1101-standaard luisterfrequentie in
//long freq_cc1101 = 434000000; //Stel de CC1101-standaard luisterfrequentie in
int rf_class = 1;//Stel de RF-luistermodus in op vaste code
#define Cube_PRINT Serial1
#define Print_Time 350
unsigned long SerialLastTime;
String Cube_PRINT_data;
#include "HackCube.h"
#include "rf.h"
#include "hid.h"
#include "nfc.h"
#include "SerialCommunication.h"
HackCube hc;
void setup() {
Cube_PRINT.begin(9600);//Stel de communicatie pin in met ESP8266
delay(2000);
hc.pinSetup();//Initialisatie module pin
delay(100);
Cube_PRINT.println("Cubemini Runing...");
cc1101_config();//Configureer de CC1101-module om standaard te luisteren naar de frequentie in de variabele freq_cc1101
delay(4);
cc1101.PrintConfig();//Uitgang CC 1101 sleutelregisters
mySwitch.enableReceive(1);//Stel de mySwitch-onderbrekingspin in om het vaste codesignaal te ontvangen
//rf_class=2;
//freq_cc1101=433920000;
//RF433_Setup_rollcode();//Rolling code CC1101 register configuratie
//cc1101_config();
//Hackradio.enableReceive(RF315_att);//Stel de onderbrekingspin in om het rolling codesignaal te ontvangen
//rf24l01_SnifferSetup();//Initialiseer de nRF24L01-module en druk de registergegevens af
//NFC_Switch("off");

}
void loop() {

//rf24Sniffer();//Polling nRF24L01 bufferregister om gegevens te ontvangen
SnifferEM4100();//Decodeer kaartnummergegevens door de OUT-uitgangspen van de EM4095 te pollen
AttackEM4100();//Simuleer/vernietig kaarten uit de EM4100-serie volgens de instructies
SerialCommunication();//Via de seriële poort ESP8266 Communicatie interactiegegevens
if (rf_class == 1) {
SnifferFixedCode();//Vaste codegegevens sniffen
} else if (rf_class == 2) {
SnifferRollcode();//Rollende codegegevens sniffen
}
}



Loading