Skip to content

Instantly share code, notes, and snippets.

View ibnux's full-sized avatar
💭
korban PHP di Jawa

iBNu Maksum ibnux

💭
korban PHP di Jawa
View GitHub Profile
@ibnux
ibnux / golang_voice_server.mmd
Created June 4, 2026 09:47
Struktur Modul Voice Server
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BEGIN MESSAGE.
Zb9nZaPYOlZn9hU zWgil1ZkDLhKayz gwfKkoUbivPAIFk n50Yy6MzTrk440S
FJboOFlgHwmcKyq WHVYudctQ3VTCKq 6Xr2MZHgg6oNo3h 7XcLHt7fesDytVD
IfaZ6LlmuCtVhwI KGyCkXS9j4mv2zd WAImG3FbO3k5MpK vQUeCVVCCNOewBZ
PlLaBodkzDXBxIf YPrBbhrfFpPCkhz 09Hgr.
END MESSAGE.
### Keybase proof
I hereby claim:
* I am ibnux on github.
* I am ibnumaksum (https://keybase.io/ibnumaksum) on keybase.
* I have a public key ASAiHNvgPwfzQ310O5uviRJ0-2Zg-Jef1qQ3IOo4WO8DLQo
To claim this, I am signing this object:
@ibnux
ibnux / serangpenipu.php
Last active March 27, 2024 15:53
php script untuk serang penipu yang pake bot telegram, pastikan ada gambar tai.jpg di sebelah filenya
<?php
ini_set('default_socket_timeout', 5);
while (true) {
$array = explode("\n", str_replace("\r","",file_get_contents("target.txt")));
foreach ($array as $a){
if(!empty(trim($a))){
$t = explode(" ", $a);
upload($t[0], $t[1]);
}
@ibnux
ibnux / mikrotik.script
Created September 2, 2022 03:46
Mikrotik Hotspot User Profile script, put this on IP -> hotspot -> User Profile
:local mak "";
:set mak $"mac-address";
/tool fetch "http://server.absen/?user=$user&mac=$mak&secret=TambahSecretBiarAman" mode=http dst-path=flash/absen.txt;
@ibnux
ibnux / key.md
Created December 12, 2021 15:31
Twitter (un)official Consumer Key

Twitter Official Consumer Key

Twitter for Android

type:            PIN
Consumer key:    3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys

Twitter for iPhone

type:            PIN

Consumer key: IQKbtAYlXLripLGPWd0HUA

@ibnux
ibnux / id.yml
Created August 27, 2021 06:13
Redmine mengubah label Masalah menjadi Tugas
# Indonesian translations
# by Raden Prabowo (cakbowo@gmail.com)
# /usr/share/redmine/config/locales/id.yml
id:
direction: ltr
date:
formats:
default: "%d-%m-%Y"
short: "%d %b"
@ibnux
ibnux / acakKTP.php
Created May 26, 2021 06:17
mengacak KTP yang disimpan di database, dan kadang nomor HP juga.
<?php
/**
* variable acak tidak boleh ada angka yang berulang
* Untuk membuat kode acak bisa menggunakan shuffle
* $acak = [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15];
* shuffle($acak);
* echo implode(',',$acak);
* jumlah acakKTP harus sesuai dengan length KTPnya yaitu 16
*/
@ibnux
ibnux / check.php
Created March 24, 2021 08:29
Script untuk check session go whatsapp rest
<?php
/**
* Simpan di folder project go whatsapp rest
* disebelah Dockerfile
* jalankan cronjob setiap 5 menit
* cronjob: */5 * * * * cd /path/to/go-whatsapp-rest && php check.php
*/
$file = "./config/085156812578.gob";
$path = "./config/stores/085156812578.gob";
@ibnux
ibnux / upload.py
Created January 23, 2021 16:01
Python script for Upload Screenshoot Kindle to telegram
import os, requests
# Your kindle must be jailbreak then install SSH and python
# https://www.mobileread.com/forums/forumdisplay.php?f=140
# save script on /mnt/us/upload.py
# run: mntroot rw
# edit /etc/crontab/root
# add: */5 7-22 * * * * python /mnt/us/upload.py
# every 5 minuts it will check screenshoot, upload it, and delete it
# you can run python /mnt/us/upload.py to check it is it working