Skip to content

Instantly share code, notes, and snippets.

@jpurmanto
jpurmanto / bruteforce_wordpress_users.sh
Created August 25, 2025 04:37 — forked from avilum/bruteforce_wordpress_users.sh
Bruteforce Wordpress Website Using WP-JSON Users API, With 1000 With Top Common Passwords
#
# This file can be saved as 'bruteforce_wordpress_users.sh'
#
# Requirements:
# - python2 (with requests)
# - jq
# - wget
# - WPForce
# 1. Cloning WPForce:
# git clone https://github.com/n00py/WPForce.git && cd ./WPForce
@jpurmanto
jpurmanto / github-action.yml
Created July 6, 2025 04:25 — forked from dirumahrafif/github-action.yml
Github action untuk deploy aplikasi Laravel dirumahrafif
name: Deploy Laravel to VPS
on:
push:
branches:
- '*'
jobs:
deploy:
name: CI/CD to VPS
@jpurmanto
jpurmanto / alacritty.toml
Last active April 13, 2025 06:53 — forked from ritog/alacritty.toml
Example configuration file for Alacritty and simple guide
[env]
TERM = "xterm-256color"
[terminal.shell]
program = "/usr/local/bin/fish"
args = ["--login"]
[window]
padding.x = 10
padding.y = 10
@jpurmanto
jpurmanto / LazyVIM.md
Created April 10, 2025 01:23 — forked from danielkec/LazyVIM.md
LazyVIM

Default shortcuts

Ctrl+h        select file tree
Ctrl+l        select file editor
Shift+h       left editor tab
Shift+l       right editor tab
Alt+j         move current line up
Alt+k         move current line down
double space  filename search(telescope) - `Ctrl+d` and `Ctrl+u` to scroll preview
@jpurmanto
jpurmanto / index.html
Last active March 6, 2025 01:36 — forked from pitch-gist/gist:2999707
HTML: Simple Maintenance Page
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>