Another 403 Forbidden pen
After a lot of procrastination, I've finally created a pen for the challenge, would love to hear any way it could be improved(or how bad it looks)
#!/usr/bin/env bash | |
# set color | |
export CLICOLOR=1 | |
export LSCOLORS=GxFxCxDxBxegedabagaced | |
COL_NC='\033[0m' # No Color | |
COL_LIGHT_YELLOW='\033[1;33m' | |
INFO="[${COL_LIGHT_YELLOW}~${COL_NC}]" | |
OVER="\\r\\033[K" |
Only an emperor can enter this 403 Forbidden page. I made this almost entirely in pure CSS except for one SVG element. I can't handle those curves. :P
A Pen by Arturo Wibawa on CodePen.
Only an emperor can enter this 403 Forbidden page. I made this almost entirely in pure CSS except for one SVG element. I can't handle those curves. :P
A Pen by Arturo Wibawa on CodePen.
Only an emperor can enter this 403 Forbidden page. I made this almost entirely in pure CSS except for one SVG element. I can't handle those curves. :P
A Pen by Arturo Wibawa on CodePen.
function wp_optimize_unused_tables() { | |
global $wpdb; | |
// Danh sách các bảng được cài đặt mặc định | |
$default_tables = array( | |
'wp_users', | |
'wp_usermeta', | |
'wp_posts', | |
'wp_comments', | |
'wp_links', |
<?php | |
// Load the pthreads extension | |
if (!extension_loaded('pthreads')) { | |
dl('pthreads.so'); | |
} | |
// Define the target URL, the data to send, and the cookies | |
$url = 'https://example.com/api/endpoint'; | |
$data = ['key' => 'value']; |
import threading | |
import requests | |
# Define the target URL, the data to send, and the cookies | |
url = 'https://webhook.site/1653bca3-946a-420d-aee8-05af89a2bc69' | |
data = {'key': 'xxxxxxx'} | |
cookies = {'cookie1': 'value1', 'cookie2': 'value2'} | |
headers = {'Authorization': 'Bearer YOUR_TOKEN_HERE'} | |
# Define a function to send the data using a thread |
#!/bin/bash | |
# cap nhap he dieu hanh len moi nhat | |
apt-get -y update || yum -y update | |
apt-get -y upgrade || yum -y upgrade | |
# cai dat docker | |
curl -fsSL https://get.docker.com -o get-docker.sh | |
sh get-docker.sh |
#!/usr/bin/env bash | |
# set -ex | |
Echo_c() { | |
echo "\033[1;33m$1\033[0m" | |
} | |
check() { | |
Echo_c " Starting cracking" |