This file contains hidden or 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
# /etc/fstab: static file system information. | |
# | |
# Use 'blkid' to print the universally unique identifier for a device; this may | |
# be used with UUID= as a more robust way to name devices that works even if | |
# disks are added and removed. See fstab(5). | |
# | |
# <file system> <mount point> <type> <options> <dump> <pass> | |
UUID=c5ea582e-9ace-4c90-a768-61c0006cd00b / ext4 defaults,noauto,noatime 0 1 | |
UUID=3E91-C5F0 /boot/efi vfat umask=0077 0 2 | |
UUID=f2b33abe-1439-4f75-9b0d-1e139c7cf781 /home ext4 defaults,noatime 0 2 |
This file contains hidden or 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
function toHex(s) { | |
// utf8 to latin1 | |
var s = unescape(encodeURIComponent(s)) | |
var h = '' | |
for (var i = 0; i < s.length; i++) { | |
h += s.charCodeAt(i).toString(16) | |
} | |
return h | |
} |
This file contains hidden or 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 | |
$pathLists = [ | |
'/files', | |
'/file', | |
'/journals', | |
'/journal', | |
'/jurnal', | |
'/jurnals', | |
'/jurnal_file', |
This file contains hidden or 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
# Copy the rsa.pub file to the SSH server. | |
# If you have an existing authorized_keys file, edit it to remove any no-pty restrictions. | |
# Add the public key to the authorized_keys file, from the /.ssh directory. | |
# cat id_rsa.pub >> ~/.ssh/authorized_keys | |
# Package generated configuration file | |
# See the sshd_config(5) manpage for details | |
# What ports, IPs and protocols we listen for | |
Port 22 | |
# Use these options to restrict which interfaces/protocols sshd will bind to |
This file contains hidden or 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
<form enctype="multipart/form-data" action="https://example.com/wp-admin/async-upload.php" method="post"> | |
<input type="file" name="uploadfile"> | |
<input type="submit" value="upload"> | |
</form> |
This file contains hidden or 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
#include <stdio.h> | |
typedef struct Man { | |
int age; | |
char *name; | |
} Man; | |
int main() | |
{ |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en-US"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="description" content="Site is under construction"> | |
<meta name="keywords"content="blackhole security, bhsec, Cvar1984, hacked, hacking, deface, exploit, defacement, pentest"> | |
<meta name="author" content="Cvar1984"> | |
<meta name="categories" content="website"> | |
<meta name="copyright" content="Cvar1984" /> |
This file contains hidden or 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 | |
/** | |
* Shadow 5hell | |
* | |
* @category Seucurity | |
* | |
* @package Shadow | |
* | |
* @author Cvar1984 <[email protected]> |
This file contains hidden or 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 | |
/** | |
* BinaryUtils.php | |
* Copyright (c) 2021 Cvar1984 <[email protected]> | |
* | |
* DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
* Version 2, December 2004 | |
* | |
* Everyone is permitted to copy and distribute verbatim or modified | |
* copies of this license document, and changing it is allowed as long |
This file contains hidden or 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 | |
/** | |
* XorEncrypt.php | |
* Copyright (c) 2021 Cvar1984 <[email protected]> | |
* | |
* DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
* Version 2, December 2004 | |
* | |
* Everyone is permitted to copy and distribute verbatim or modified | |
* copies of this license document, and changing it is allowed as long |