Skip to content

Instantly share code, notes, and snippets.

View D3vl0per's full-sized avatar

Márk Zsibók (D3v) D3vl0per

View GitHub Profile
@D3vl0per
D3vl0per / BF888S_default.txt
Created February 28, 2018 22:56 — forked from NaphatrB/BF888S_default.txt
Baofeng BF888S default frequencies
CH1 462.125 CTCSS 69.3
CH2 462.225
CH3 462.325
CH4 462.425 CTCSS 103.5
CH5 462.525 CTCSS 114.8
CH6 462.625 CTCSS 127.3
CH7 462.725 CTCSS 136.5
CH8 462.825 CTCSS 162.2
CH9 462.925 DCS 025
CH10 463.025 DCS 032
@D3vl0per
D3vl0per / BF888S_default.txt
Created February 28, 2018 22:56 — forked from NaphatrB/BF888S_default.txt
Baofeng BF888S default frequencies
CH1 462.125 CTCSS 69.3
CH2 462.225
CH3 462.325
CH4 462.425 CTCSS 103.5
CH5 462.525 CTCSS 114.8
CH6 462.625 CTCSS 127.3
CH7 462.725 CTCSS 136.5
CH8 462.825 CTCSS 162.2
CH9 462.925 DCS 025
CH10 463.025 DCS 032
@D3vl0per
D3vl0per / problem.cpp
Created April 4, 2018 00:06
My problem
void isCardWrite(String data)
{
MFRC522::MIFARE_Key key;
for (byte i = 0; i < 6; i++) key.keyByte[i] = 0xFF;
byte buffer[16];
data.getBytes(buffer, 16); // A vissza adott érték,ha az 12345678-as stringet adok be:3132333435363738
/*for (int i = 0; i < sizeof(buffer); i++)
{
buffer[i]=(byte)(data[i]);
@D3vl0per
D3vl0per / keybase.md
Last active March 30, 2019 22:55
keybase.md

Keybase proof

I hereby claim:

  • I am D3vl0per on github.
  • I am d3v_ (https://keybase.io/d3v_) on keybase.
  • I have a public key whose fingerprint is 0D4C BB85 85F1 0728 2BF0 15FF CFD8 AFA0 F9FE C28D

To claim this, I am signing this object:

@D3vl0per
D3vl0per / haproxy.cfg
Last active April 30, 2021 23:09
HAproxy SSL passthrough by SNI to docker container with docker embeded DNS
global
log /dev/log local0
log /dev/log local1 notice
stats socket /haproxy-admin.sock mode 660 level admin
stats timeout 30s
daemon
defaults
mode tcp
log global
@D3vl0per
D3vl0per / Dockerfile
Last active October 12, 2022 12:35
Best practice golang containerization
# syntax=docker/dockerfile:1.3
# Language: golang
# Version: 1.0.1
# Created by D3v
ARG PROJECT_NAME=ether-proxy \
GO_VERSION=1.19.1 \
ALPINE_VERSION=3.16 \
GOOS=linux \
@D3vl0per
D3vl0per / credentials.md
Created February 9, 2023 10:30
Default login credentials to ONT devices
Device Username Pass. Mode Comment
Nokia G-240W-F userAdmin 1 Admin
Nokia G-240W-F userAdminGPON ALC#FGU SFU Mode Used by Digi ISP
Nokia G-240W-F adminadmin ALC#FGU SFU Mode Factory default SFU Mode user
Nokia G-240W-F AdminGPON ALC_FGU SFU Mode
Digi ZTE F668 user digi Admin Used by Digi ISP

Footnotes

  1. Randomly generated, check the back cover. Maybe same as the default WiFi password.

[Install]
WantedBy=multi-user.target
[Unit]
Description=Google Cloud Compute Engine AlloyDB Proxy
[Service]
Type=simple
WorkingDirectory=/usr/local/bin
ExecStart=/usr/local/bin/alloydb-auth-proxy projects/PROJECT/locations/REGION/clusters/CLUSTER/instances/INSTANCE?address=0.0.0.0&port=PORT
@D3vl0per
D3vl0per / config.yaml
Created February 23, 2023 00:31
Ether Proxy Public RPCs
---
MaxHTTPWorker: 200
HealthCheckIntervalSec: 10
BlockMaxOffset: 12
LatencyCheckIntervalMS: 1000
Chains:
ethereum:
Nodes:
- URL: https://rpc.ankr.com/eth
trusted: true
@D3vl0per
D3vl0per / bunkernet.sh
Created November 23, 2023 02:00
BunkerNet API | Registration and blocklist dump
#!/bin/bash
REGISTRATION=$(
curl --location 'https://api.bunkerweb.io/register' \
--header 'User-Agent: BunkerWeb/1.5.3' \
--header 'Content-Type: application/json' \
--data '{
"integration": "docker",
"version": "1.5.3"
}')