Frontend
Backend
Frameworks de PHP
CMS
Mobile
Servidores
Edição de imagem e vídeo
Modelagem 3d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
WARNING: THIS IS AN AUTO-GENERATED FILE. CHANGES TO IT ARE LIKELY TO BE | |
OVERWRITTEN AND LOST. Changes to this xml configuration should be made using: | |
virsh edit win10-gaming | |
or other application using the libvirt API. | |
--> | |
<domain type='kvm'> | |
<name>win10-gaming</name> | |
<uuid>b562f5ca-4792-4d2d-99be-ece9905ff714</uuid> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// @@TODO@@ classify this as a pub pre-controller | |
// @@TODO@@ semicolin var, might help edge \xYZ style hexors -- might affect speed though | |
// @@TOTO@@ make vars to turn on blocking of common WP and enterprise requests | |
// @@TODO@@ make modes to check in user agent, referrer, post, headers | |
// @@TODO@@ mode for strict validation of IP in addr + forwarder style headers | |
// @@TODO@@ testing mode (still allows traffic) | |
// @@TODO@@ log wrapper and modes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
error_reporting(E_ALL); | |
ini_set('max_execution_time',0); | |
# http://www.vipsocks24.com/ | |
$list="107.10.35.178:42427 | |
108.20.152.202:1415 | |
110.142.196.145:43134 | |
115.118.195.23:1080 | |
115.252.100.245:1080 | |
115.252.143.165:1080 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace cPanel; | |
/************************************************************************************** | |
* Copyright (c) 2013, cPanel, Inc. * | |
* All rights reserved. * | |
* * | |
* Redistribution and use in source and binary forms, with or without modification, * | |
* are permitted provided that the following conditions are met: * | |
* * |
This script will keep a daily, weekly and monthly rsync hardlinked backup of files. It will also create a gzipped MySQL dump of the last 6 days, a weekly backup for 3 weeks and a monthly backup for 12 months.
You must have already have public key access to the remote user.
Run the following:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source: | |
# https://www.cloudflare.com/ips | |
# https://quic.cloud/docs/cdn/adding-quic-cloud-ips-to-allowlist/ | |
# CloudFlare | |
for i in `curl https://www.cloudflare.com/ips-v4`; do iptables -I INPUT -p tcp -m multiport --dports http,https -s $i -j ACCEPT; done | |
for i in `curl https://www.cloudflare.com/ips-v6`; do ip6tables -I INPUT -p tcp -m multiport --dports http,https -s $i -j ACCEPT; done | |
# QUIC.cloud | |
for i in `curl https://quic.cloud/ips?ln`; do iptables -I INPUT -p tcp -m multiport --dports http,https -s $i -j ACCEPT; done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Search for eval(base64_decode) | |
#https://www.itoctopus.com/a-couple-of-shell-commands-to-find-hacked-php-files-on-a-joomla-website | |
#https://iamsto.wordpress.com/2018/10/30/hacked-find-evil-code-in-php-files-find-stealrat-find-hacked-php-files/ | |
find . -name \*.php -exec grep -l "eval(base64_decode" {} \; | |
find . -print | xargs -d'\n' grep -r 'die(PHP_OS.chr(49).chr(48).chr(43).md5(0987654321' | |
find . -type f -name '*.php' -print | xargs grep -i x29 | |
find . -type f -name '*.php' -print | xargs grep -E '[0-9a-zA-Z/]{80}' | |
grep -r --include=*.php -e '[[:alnum:]]\{63,\}' | |
grep -r --include=*.php -e '[[:alnum:]\/\+]\{137,\}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/php | |
<?php | |
// get command line arguments | |
$args = $argv; | |
// AbuseIPDB API Key | |
$api_key = 'xxx'; | |
// your AbuseIPDB User ID |
NewerOlder