Skip to content

Instantly share code, notes, and snippets.

View binarykore's full-sized avatar
🏠
Living under the Shadows of my Game

Digital Kore binarykore

🏠
Living under the Shadows of my Game
View GitHub Profile
@binarykore
binarykore / hrgv.md
Last active April 14, 2024 09:44
Browser Request and Response Headers Guidelines..

header_request_get_variable

  • Browser Guidelines, EG: Path, Referrers
@binarykore
binarykore / webmoon.php
Created April 14, 2024 09:41
Web Moon - Git Dump Python to PHP..
<?php
//Web Moon - Git Dump Exploit..
?>
@binarykore
binarykore / url_detection.php
Created March 25, 2024 12:56
URL Detection to SVG..
<?php
//Soon..
?>
@binarykore
binarykore / wire_chat.php
Created March 25, 2024 12:36
Wire Chat, via Session Handler Interface and the Stale Sessions Data..
<?php
//Wire Chat..
?>
@binarykore
binarykore / session_handlers.php
Created March 25, 2024 12:35
Full Graph on Session Handlers and its Interface on PHP for a Remote Access Login / Logout System via Stateless Sessions..
<?php
//OOP Class and MVC Framework for SessionHandlerInterface..
?>
@binarykore
binarykore / binary_to_alphanumeric.php
Created March 25, 2024 12:33
Binary to Alphanumeric Characters..
<?php
//Soon..
?>
@binarykore
binarykore / oriental_pearl.md
Last active March 25, 2024 13:02
Oriental Pearl

Oriental Pearl is a type of Symmetric Cryptography for Message Relay on Forums.. It was established as a Form of Deceit Messaging on Forums as such for NTAS..

Mainly it uses B32 or Base 32 as a Wrapper.. Then, B64 or Base 64 for the Binary Mitigation.. Afterwards GZip Compress it vice versa (Odd or Even) via a +1 or +63 Mobile Number depending on the Shift..

The first Design (1.0) is based on Raw Format..

Meanwhile the 2.0 Revision already has Browser Fingerprinting like Signatures..

@binarykore
binarykore / name_punctual.php
Last active February 15, 2024 07:54
Proper Full Name Pronunciation using Index Keys of Tri..
<?php
$_fullName = ["first_name" => "","middle_name" => "","last_name" => ""];
$_firstAndLast = "";//key() and end() (index keys)
$_punctualName = "";//array_pop middle key, then concat first_name and middle_name, after concat same value to last_name
//EG: Kingfish, John Doe - Larc
//For Social Media Apps like Twitter, Facebook and Instagram especially here in Asia..
?>
@binarykore
binarykore / pageview.php
Last active February 10, 2024 14:43
Page View via HTTP Response Headers and Request Headers..
<?php
//header_request_get_variable = http_headers();
//hrgv
$_hrgv = func();
$_uri = $_hrgv["Hostname"];
$_path = $_hrgv["Path"];
$_data = $_uri;
//Save Data to Database as per Boot Load from CSS Files..
switch($_uri."/".$_path){
case("https://www.google.com/entrypoint"):
@binarykore
binarykore / concise.php
Created November 19, 2023 17:52
Testing PHP Concisiveness Method using PHP, will be adding a new PHP Class soon..
<?php
const guest = "";
const member = "test";
$_res = guest || member;
echo($_res);//Returns True, for Conditional Statements..
if(!empty($_res)){
echo(member);
}//
?>