Skip to content
View keyamasabaya's full-sized avatar
🏠
Code asap !
🏠
Code asap !
  • France
  • 08:02 (UTC +02:00)

Block or report keyamasabaya

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
keyamasabaya/README.md

whoami --verbose Full-stack developer based in France, building at the intersection of Web, Blockchain and AI — and an ethical hacker on challenge platforms and bug bounty programs. build · break · learn · share · repeat

cat stack.conf Languages: PHP, JavaScript, Python, Solidity, Bash Frameworks: Laravel, Symfony, Node.js, React, Vue.js, TensorFlow.js Chain, cloud & ops: Ethereum, BNB Chain, Web3.js, Docker, Linux, Kali Offsec toolkit: Burp Suite, Wireshark, Nmap, Metasploit, Ghidra

ls ~/projects/featured

PHP 8.x client for the Discogs API — direct access to the world's largest music database.

PHP 8.x · REST · OAuth

Status

API client for the BSC blockchain explorer — real-time DeFi data extraction.

PHP · Web3 · Blockchain

Status

Real-time object detection on mobile using TensorFlow.js and the COCO-SSD model.

JavaScript · TensorFlow.js · COCO-SSD

Status

🔮 What's next?

Got an idea, a need, a technical challenge? Let's talk.

Get in touch


nmap -sV ./ethical-hacking Platforms — challenges & training: Hack The Box, TryHackMe, Root-Me Bug bounty programs: HackerOne, YesWeHack, Intigriti Focus, scope and rules of engagement Disclosure policy — how I report

tail -f focus.log Current focus log

git log --stat --all Overview — repositories, stars, pull requests, issues Contributions & streak Most used languages

gpg --list-keys
pub   rsa4096 2025-11-14 [SC]
uid   w3spi5 <github@wespify.com>
sub   rsa4096 2025-11-14 [E]

-----BEGIN PGP PUBLIC KEY BLOCK-----

mDMEaReKGxYJKwYBBAHaRw8BAQdAP69WrJF2dKEn24eWMiiU2YLoXQE177zbzKkV
wzA6qO+0J2dpdGh1Yi53ZXNwaWZ5LmNvbSA8Z2l0aHViQHdlc3BpZnkuY29tPoiZ
BBMWCgBBFiEEoLY7VKDTPAb/6hIZhA2KpJiwURgFAmkXihsCGwMFCT4SZ+UFCwkI
BwICIgIGFQoJCAsCBBYCAwECHgcCF4AACgkQhA2KpJiwURi2EwD/RfKGV4ulJ7kp
GbLQDRfTfwuInO9aaGJQMQs6JsBWZGoA/3/UCcbNCUTxtpm+f0qu/yIbJsuTi81K
hsgfSYE0kdAFuDgEaReKGxIKKwYBBAGXVQEFAQEHQEMwYakHNplpdqxioB1yP42p
911AKgHvK7ZM3UI2DWBOAwEIB4h+BBgWCgAmFiEEoLY7VKDTPAb/6hIZhA2KpJiw
URgFAmkXihsCGwwFCT4SZ+UACgkQhA2KpJiwURj6QQEAtY1V+yx7jWZcHLztg96v
VKvyluRaziIGyVEi+ie2WZcA/1RbR5g5yjD47R2Bl990mPmi4U3l2UjjVD+L8/Dv
VGAA
=E4ac
-----END PGP PUBLIC KEY BLOCK-----

╔══════════════════════════════════════════════════════════════╗
║   "Code is like humor.                                       ║
║    When you have to explain it, it's bad."   — Cory House    ║
╚══════════════════════════════════════════════════════════════╝

Thanks for stopping by. Explore the repos, drop me a line, let's build (or break) something.

Follow @keyamasabaya Say hi


footer

Pinned Loading

  1. bigdump bigdump Public

    An evolution of PHP script written by Alexey Ozerov in 2003

    PHP 42 3

  2. codepack codepack Public

    CLI tool to extract folder structure and file contents with a directory excluded possibility

    Shell 15

  3. ipapi ipapi Public

    Extract easily informations about IP address with IP-API.com

    PHP 2

  4. php-discogs-api php-discogs-api Public

    Forked from AnssiAhola/php-discogs-api

    PHP 7.3 / PHP 8.x Implementation of the Discogs API

    PHP 1

  5. France Travail : Script pour activer... France Travail : Script pour activer le copier-coller sur les champs input/textarea désactivés (et il faut l'avouer, c'est complètement débile de leur part à l'heure de l'automatisation des mots de passe autogénérés...)
    1
    // Demander le name de l'élément
    2
    const elementName = prompt("Entrez le 'name' de l'input ou textarea :");
    3
    if (elementName) {
    4
        // Rechercher l'élément par son attribut name
    5
        const elements = document.getElementsByName(elementName);
  6. PHP - One line static function to ch... PHP - One line static function to check if you are in local or prod env
    1
    <?php
    2
    public static function isLocal(): bool
    3
    {
    4
      return in_array($_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1']);
    5
    }