Skip to content

Instantly share code, notes, and snippets.

View aminubakori's full-sized avatar
🏠
Working from home

Aminu Bakori aminubakori

🏠
Working from home
View GitHub Profile
@aminubakori
aminubakori / APDUList.txt
Created July 27, 2023 11:11 — forked from skakri/APDUList.txt
APDU list
Cheef's Grand APDU List Smartcard Selected Information APDU list
Reference: http://web.archive.org/web/20090630004017/http://cheef.ru/docs/HowTo/APDU.info
and this : https://neapay.com/post/read-smart-card-chip-data-with-apdu-commands-iso-7816_76.html
response can be found here : https://www.eftlab.com/knowledge-base/complete-list-of-apdu-responses/
#------------+------------------------+------------------------+----------------------+--------------------------------+
|ClaIns P1 P2|Lc Send Data |Le Recv Data | Specification | Description |
+------------+------------------------+------------------------+----------------------+--------------------------------+
| 04 | ISO 7816-9 6.3 | DEACTIVATE FILE |
| A0 04 00 00 00 | 3GPP TS 11.11 | INVALIDATE |
@aminubakori
aminubakori / EncryptSample.java
Created June 10, 2023 19:11 — forked from ozkansari/EncryptSample.java
PIN Block Creation
import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;
public class EncryptSample {
private static final String KEY = "AB1C11111111111AAAAAAADDDDD11111";
private static final int PIN_LENGTH = 6;
public static void main(String[] args) throws Exception {
@aminubakori
aminubakori / neo4j_cypher_cheatsheet.md
Created June 4, 2023 21:44 — forked from DaniSancas/neo4j_cypher_cheatsheet.md
Neo4j's Cypher queries cheatsheet

Neo4j Tutorial

Fundamentals

Store any kind of data using the following graph concepts:

  • Node: Graph data records
  • Relationship: Connect nodes (has direction and a type)
  • Property: Stores data in key-value pair in nodes and relationships
  • Label: Groups nodes and relationships (optional)
@aminubakori
aminubakori / package.json
Last active June 7, 2017 19:51
Webhook Example Node Server for Payant.ng
{
"name": "node-webhook-example",
"version": "1.0.0",
"description": "Webhook Example Node Server for Payant.ng",
"main": "webhook.js",
"scripts": {
"start": "node webhook.js"
},
"author": "Payant Support <hello@payant.ng>",
"license": "ISC",