

<feed xmlns="http://www.w3.org/2005/Atom">
  <id>https://0xlcs.github.io/</id>
  <title>0xLuc4s</title>
  <subtitle>blog, hacking, cyber security</subtitle>
  <updated>2025-05-13T22:43:02+00:00</updated>
  <author>
    <name>0xLuc4s</name>
    <uri>https://0xlcs.github.io/</uri>
  </author>
  <link rel="self" type="application/atom+xml" href="https://0xlcs.github.io/feed.xml"/>
  <link rel="alternate" type="text/html" hreflang="en"
    href="https://0xlcs.github.io/"/>
  <generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator>
  <rights> © 2025 0xLuc4s </rights>
  <icon>/assets/img/favicons/favicon.ico</icon>
  <logo>/assets/img/favicons/favicon-96x96.png</logo>


  
  <entry>
    <title> Exploring Privilege Escalation with rsync and bash setuid</title>
    <link href="https://0xlcs.github.io/posts/rsync-bash-setuid/" rel="alternate" type="text/html" title=" Exploring Privilege Escalation with rsync and bash setuid" />
    <published>2024-10-10T01:33:22+00:00</published>
  
    <updated>2024-10-10T03:36:18+00:00</updated>
  
    <id>https://0xlcs.github.io/posts/rsync-bash-setuid/</id>
    <content src="https://0xlcs.github.io/posts/rsync-bash-setuid/" />
    <author>
      <name>0xLuc4s</name>
    </author>

  
    
    <category term="redteam" />
    
    <category term="privilege-escalation" />
    
    <category term="rsync" />
    
  

  
    <summary>
      





      In CTF (Capture The Flag) competitions and security assessments, exploiting permission flaws and improper configurations of tools like rsync is a recurring technique for privilege escalation. These flaws are often found in misconfigured systems where permission management does not follow security best practices. The absence of strict permission management can create critical vulnerabilities, pr...
    </summary>
  

  </entry>

  
  <entry>
    <title>Exploiting Bash Globbing Vulnerabilities: A Comprehensive Analysis</title>
    <link href="https://0xlcs.github.io/posts/bash-globbing/" rel="alternate" type="text/html" title="Exploiting Bash Globbing Vulnerabilities: A Comprehensive Analysis" />
    <published>2024-09-27T05:59:25+00:00</published>
  
    <updated>2024-09-27T09:13:21+00:00</updated>
  
    <id>https://0xlcs.github.io/posts/bash-globbing/</id>
    <content src="https://0xlcs.github.io/posts/bash-globbing/" />
    <author>
      <name>0xLuc4s</name>
    </author>

  
    
    <category term="redteam" />
    
    <category term="vulnerabilities" />
    
  

  
    <summary>
      





      Abstract

This article delves into the exploitation of Bash globbing vulnerabilities within a web application’s authentication system. By dissecting a real-world scenario, we demonstrate how such vulnerabilities can be leveraged to escalate privileges and achieve Remote Code Execution (RCE). Additionally, we analyze a Python script designed to brute-force a leaked Certificate Authority (CA) pri...
    </summary>
  

  </entry>

  
  <entry>
    <title>Command Injection as a Privilege Escalation Vector in Linux Systems </title>
    <link href="https://0xlcs.github.io/posts/command-injection-vuln-in-web-service/" rel="alternate" type="text/html" title="Command Injection as a Privilege Escalation Vector in Linux Systems " />
    <published>2024-09-27T05:53:22+00:00</published>
  
    <updated>2024-09-27T05:53:22+00:00</updated>
  
    <id>https://0xlcs.github.io/posts/command-injection-vuln-in-web-service/</id>
    <content src="https://0xlcs.github.io/posts/command-injection-vuln-in-web-service/" />
    <author>
      <name>0xLuc4s</name>
    </author>

  
    
    <category term="redteam" />
    
    <category term="vulnerabilities" />
    
  

  
    <summary>
      





      Abstract
This article delves into the technique of command injection as a means to escalate privileges within Linux systems. Using an illustrative scenario, we analyze how malicious manipulation of input parameters can lead to arbitrary command execution, resulting in elevated access rights. Furthermore, we discuss defensive strategies to thwart such attacks.

Introduction
Privilege escalation ...
    </summary>
  

  </entry>

  
  <entry>
    <title>Exploiting Cross-Site Scripting (XSS) for Remote Code Execution in Content Management Systems </title>
    <link href="https://0xlcs.github.io/posts/exploiting-cross-site-scripting-for-remote-code-execution/" rel="alternate" type="text/html" title="Exploiting Cross-Site Scripting (XSS) for Remote Code Execution in Content Management Systems " />
    <published>2024-09-27T05:50:22+00:00</published>
  
    <updated>2024-09-27T05:50:22+00:00</updated>
  
    <id>https://0xlcs.github.io/posts/exploiting-cross-site-scripting-for-remote-code-execution/</id>
    <content src="https://0xlcs.github.io/posts/exploiting-cross-site-scripting-for-remote-code-execution/" />
    <author>
      <name>0xLuc4s</name>
    </author>

  
    
    <category term="redteam" />
    
    <category term="vulnerabilities" />
    
  

  
    <summary>
      





      Abstract
This article explores the exploitation of a Cross-Site Scripting (XSS) vulnerability within a Content Management System (CMS), demonstrating how such a flaw can be leveraged to achieve Remote Code Execution (RCE). By injecting malicious scripts, we illustrate the potential compromise of server integrity and security. Additionally, we discuss preventive measures and best practices to mi...
    </summary>
  

  </entry>

  
  <entry>
    <title>Cracking Bcrypt Hashes with Hashcat: Analysis and Application in Security Scenarios</title>
    <link href="https://0xlcs.github.io/posts/cracking-bcrypt/" rel="alternate" type="text/html" title="Cracking Bcrypt Hashes with Hashcat: Analysis and Application in Security Scenarios" />
    <published>2024-09-27T04:59:22+00:00</published>
  
    <updated>2024-09-27T09:13:21+00:00</updated>
  
    <id>https://0xlcs.github.io/posts/cracking-bcrypt/</id>
    <content src="https://0xlcs.github.io/posts/cracking-bcrypt/" />
    <author>
      <name>0xLuc4s</name>
    </author>

  
    
    <category term="redteam" />
    
    <category term="vulnerabilities" />
    
  

  
    <summary>
      





      Abstract
This article examines the process of cracking Bcrypt hashes using the Hashcat tool, demonstrating its application in a controlled security scenario. We discuss the structure of Bcrypt hashes, security considerations, and the methodologies employed to perform effective brute-force attacks. Additionally, we explore best practices for strengthening password storage mechanisms.
Introductio...
    </summary>
  

  </entry>

</feed>


