Top Links Menu
Mar 24, 2026
Mar 22, 2026
Scanning Vulnerable Website
Nikto
- nikto -h http://target.com -Tuning 1,2,3
- nikto -h target.com -p 80,443,8080
- nikto -h target.com -Plugins apache_expect_xss
- nikto -list-plugins
- nikto -h target.com -evasion 1
- nikto -h http://target.com -o report.txt
Gobuster
Burp Suite
Install Linux Tools in Windows CMD
go install -v github.com/projectdiscovery/subfinder/v2/cmd/subfinder@latest
go install -v github.com/projectdiscovery/httpx/cmd/httpx@latest
git clone https://github.com/sullo/nikto
cd nikto/program
perl nikto.pl -Version
Mar 19, 2026
Frontend Free Website
- https://www.reactbits.dev/
- https://freefrontend.com/
Alternatives (VERY GOOD)
1. UI Components & Snippets
🌐 uiverse
👉 https://uiverse.io/Community-driven UI elements
Buttons, loaders, inputs, etc.
🌐 HyperUI
👉 https://www.hyperui.dev/Free Tailwind components
Good for dashboards & landing pages
🌐 Flowbite
👉 https://flowbite.com/UI kit + components
Includes charts, modals, forms
2. Full Templates & UI Kits
🌐 Mamba UI
👉 https://mambaui.com/Ready-to-use sections & templates
🌐 Tail-Kit
👉 https://tailkit.com/250+ free components
🌐 Wicked Blocks
👉 https://wickedblocks.dev/Marketing UI blocks
3. Practice & Real Projects
🌐 Frontend Mentor
👉 https://www.frontendmentor.io/Real-world UI challenges
Great for portfolio
🌐 GreatFrontEnd
👉 https://www.greatfrontend.com/Practice real frontend problems (some free)
⚡ Bonus (Hidden Gems)
🌐 FreeFrontend.org
👉 https://freefrontend.org/MIT licensed, production-ready snippets
No dependencies, easy copy-paste
Mar 16, 2026
Scopus API
- API key example:1qjhu12e731ygasd733eh
- First way
-H "X-ELS-APIKey: 1qjhu12e731ygasd733eh" ^
atau menggunakan python
Mar 15, 2026
Video compress
apt-get install -y ffmpeg
ffmpeg-static -i /var/www/html/mz/public/videos/producerai-hero.mp4 \ -vcodec libx264 -crf 32 -preset fast \ -movflags faststart \ -acodec aac -b:a 96k \ /var/www/html/mz/public/videos/hero-small.mp4
-############################################
# Tambah cache header untuk video di nginx config
cat > /etc/nginx/sites-available/mz << 'NGINX'
upstream avoer_app {
server 127.0.0.1:3001;
keepalive 64;
}
server {
listen 80;
listen [::]:80;
server_name avoer.ft.unsri.ac.id;
gzip on;
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml image/svg+xml;
# Static Next.js files
location /_next/static/ {
alias /var/www/html/mz/.next/static/;
expires 1y;
add_header Cache-Control "public, immutable";
access_log off;
}
# VIDEO — cache lama di browser, support range request untuk streaming
location /videos/ {
alias /var/www/html/mz/public/videos/;
expires 7d;
add_header Cache-Control "public, max-age=604800";
add_header Accept-Ranges bytes;
access_log off;
}
# Public folder lainnya
location /public/ {
alias /var/www/html/mz/public/;
expires 30d;
add_header Cache-Control "public";
access_log off;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
# Next.js app
location / {
proxy_pass http://avoer_app;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_cache_bypass $http_upgrade;
proxy_read_timeout 60s;
}
client_max_body_size 50M;
}
NGINX
nginx -t && nginx -s reload
echo "Nginx reload OK"
# Test video accessible langsung dari nginx (bukan via Next.js)
curl -I http://mz.com/videos/producerai-hero.mp4 | head -10
Mar 14, 2026
Mar 11, 2026
Laravel artisan optimize
php artisan optimize:clear && php artisan optimize && systemctl restart php8.5-fpm
[opcache]
opcache.enable=1
opcache.enable_cli=0
opcache.memory_consumption=256
opcache.interned_strings_buffer=16
opcache.max_accelerated_files=20000
opcache.validate_timestamps=0
opcache.save_comments=1
opcache.revalidate_freq=0
realpath_cache_size=4096k
realpath_cache_ttl=600
Feb 8, 2026
Nov 25, 2025
Enumerate domain
https://github.com/skavngr/rapidscan/
---------------
# 2. Amass amass enum -d zzz.ac.id -o subs_amass.txt
# 3. Assetfinder assetfinder zzz.ac.id > subs_assetfinder.txt
# 4. Subfinder subfinder -d zzz.ac.id -o subs_subfinder.txt
# 5. Combine dan remove duplicate cat subs_*.txt | sort -u > subdomains_all.txt
# Hitung total wc -l subdomains_all.txt
# Validasi subdomain yang aktif
cat subdomains_all.txt | httpx > alive_subs.txt
# Scan nikto
mkdir -p results
while read sub; do
echo "[+] Scanning: $sub"
nikto -h "$sub" -o "results/nikto_$sub.html" -Format html
done < alive_subs.txt
----------------
SHODAN
https://help.shodan.io/command-line-interface/0-installation
--------------
gobuster dir -u https://domain.com -w wordlist.txt
.jpeg)

.jpeg)
