<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Post-Exploitation on Solvere Labs</title>
    <link>https://solvere.app/tags/post-exploitation/</link>
    <description>Recent content in Post-Exploitation on Solvere Labs</description>
    <language>en-us</language>
    <managingEditor>contact@solvere.app (Solvere Labs)</managingEditor>
    <webMaster>contact@solvere.app (Solvere Labs)</webMaster>
    <copyright>© 2026 Solvere Labs</copyright>
    <lastBuildDate>Fri, 19 Jun 2026 00:00:00 +0000</lastBuildDate>
    <image>
      <url>https://solvere.app/icon-512.png</url>
      <title>Solvere Labs</title>
      <link>https://solvere.app/tags/post-exploitation/</link>
    </image><atom:link href="https://solvere.app/tags/post-exploitation/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Windows Download Methods</title>
      <link>https://solvere.app/tutorials/guides/windows-download-methods/</link>
      <pubDate>Fri, 19 Jun 2026 00:00:00 +0000</pubDate>
      <dc:creator>Solvere Labs</dc:creator>
      <category>file-transfer</category><category>windows</category><category>powershell</category><category>post-exploitation</category>
      <guid>https://solvere.app/tutorials/guides/windows-download-methods/</guid>
      <description>The Windows-native ways to pull a file when you have a shell on a Windows host: certutil, bitsadmin, PowerShell Invoke-WebRequest, WebClient, and the in-memory IEX cradle, with an honest look at how defenders see each one.</description>
    </item>
    
    <item>
      <title>SMB File Transfer</title>
      <link>https://solvere.app/tutorials/guides/smb-file-transfer/</link>
      <pubDate>Fri, 19 Jun 2026 00:00:00 +0000</pubDate>
      <dc:creator>Solvere Labs</dc:creator>
      <category>file-transfer</category><category>smb</category><category>windows</category><category>impacket</category><category>post-exploitation</category>
      <guid>https://solvere.app/tutorials/guides/smb-file-transfer/</guid>
      <description>Move files to and from a Windows target over SMB: stand up a share with impacket-smbserver, then pull, run, and push back with native copy / net use or smbclient. Quick reference with a modular cheat sheet and per-command breakdowns.</description>
    </item>
    
    <item>
      <title>SCP and SSH File Transfer</title>
      <link>https://solvere.app/tutorials/guides/scp-ssh-transfer/</link>
      <pubDate>Fri, 19 Jun 2026 00:00:00 +0000</pubDate>
      <dc:creator>Solvere Labs</dc:creator>
      <category>file-transfer</category><category>ssh</category><category>linux</category><category>post-exploitation</category>
      <guid>https://solvere.app/tutorials/guides/scp-ssh-transfer/</guid>
      <description>The scp and sftp quick reference: flags, a modular copy-paste cheat sheet, and a worked breakdown of every real transfer. Upload and download, copy a directory with -r, authenticate with a recovered key, hop through a jump host, pipe over ssh when scp is missing, and verify with a checksum.</description>
    </item>
    
    <item>
      <title>Netcat File Transfer</title>
      <link>https://solvere.app/tutorials/guides/netcat-file-transfer/</link>
      <pubDate>Fri, 19 Jun 2026 00:00:00 +0000</pubDate>
      <dc:creator>Solvere Labs</dc:creator>
      <category>file-transfer</category><category>netcat</category><category>networking</category><category>linux</category><category>post-exploitation</category>
      <guid>https://solvere.app/tutorials/guides/netcat-file-transfer/</guid>
      <description>The netcat file-transfer quick reference: flags, a modular cheat sheet, and worked breakdowns. Listen and save, connect and send, close cleanly with -N or -q0, stream a directory with tar, encrypt with socat OPENSSL, fall back to bash /dev/tcp when nc is missing, and checksum to catch truncation.</description>
    </item>
    
    <item>
      <title>HTTP File Transfer</title>
      <link>https://solvere.app/tutorials/guides/http-file-transfer/</link>
      <pubDate>Fri, 19 Jun 2026 00:00:00 +0000</pubDate>
      <dc:creator>Solvere Labs</dc:creator>
      <category>file-transfer</category><category>networking</category><category>linux</category><category>windows</category><category>post-exploitation</category>
      <guid>https://solvere.app/tutorials/guides/http-file-transfer/</guid>
      <description>The HTTP file-transfer quick reference: serve a folder from your attacker box in one line, then pull files onto the target with wget, curl, certutil, PowerShell, or curl.exe. Flags, a modular cheat sheet, in-memory execution, upload-back with updog, checksum verification, and beating egress filters by serving on 80 or 443.</description>
    </item>
    
    <item>
      <title>Getting Files onto a Target</title>
      <link>https://solvere.app/tutorials/guides/file-transfer/</link>
      <pubDate>Fri, 19 Jun 2026 00:00:00 +0000</pubDate>
      <dc:creator>Solvere Labs</dc:creator>
      <category>file-transfer</category><category>post-exploitation</category><category>networking</category><category>windows</category><category>linux</category>
      <guid>https://solvere.app/tutorials/guides/file-transfer/</guid>
      <description>The file-transfer quick reference: the serve-and-pull vs push-and-receive decision, a modular copy-paste cheat sheet, and a worked breakdown of every method. Serve a folder over HTTP, pull with wget or certutil, host an SMB share, move a file with netcat or socat, copy over scp, paste a base64 blob, and checksum both ends.</description>
    </item>
    
    <item>
      <title>base64 File Transfer</title>
      <link>https://solvere.app/tutorials/guides/base64-transfer/</link>
      <pubDate>Fri, 19 Jun 2026 00:00:00 +0000</pubDate>
      <dc:creator>Solvere Labs</dc:creator>
      <category>file-transfer</category><category>linux</category><category>windows</category><category>post-exploitation</category>
      <guid>https://solvere.app/tutorials/guides/base64-transfer/</guid>
      <description>The base64 file-transfer quick reference: flags, a modular copy-paste cheat sheet, and a worked breakdown of every real situation. Encode a file to one pasteable line, decode it with a heredoc, move files with certutil or PowerShell on Windows, chunk a blob too long to paste, and checksum both ends to prove it arrived intact.</description>
    </item>
    
    <item>
      <title>WinPEAS</title>
      <link>https://solvere.app/tutorials/guides/winpeas/</link>
      <pubDate>Sat, 28 Mar 2026 00:00:00 +0000</pubDate>
      <dc:creator>Solvere Labs</dc:creator>
      <category>windows</category><category>privilege-escalation</category><category>enumeration</category><category>post-exploitation</category>
      <guid>https://solvere.app/tutorials/guides/winpeas/</guid>
      <description>A practical WinPEAS guide: get the Windows privilege-escalation enumerator onto a target, read its color-coded output, focus on the high-signal findings, and avoid drowning in noise.</description>
    </item>
    
    <item>
      <title>Pspy</title>
      <link>https://solvere.app/tutorials/guides/pspy/</link>
      <pubDate>Sat, 28 Mar 2026 00:00:00 +0000</pubDate>
      <dc:creator>Solvere Labs</dc:creator>
      <category>linux</category><category>privilege-escalation</category><category>enumeration</category><category>cron</category><category>post-exploitation</category>
      <guid>https://solvere.app/tutorials/guides/pspy/</guid>
      <description>The pspy quick reference: flags, a modular copy-paste cheat sheet, and a worked breakdown of every real situation. Transfer the static binary, watch processes and cron fire in real time without root, catch a UID=0 root timer, save and grep the feed for root commands, and turn a writable cron script into a privilege-escalation lead.</description>
    </item>
    
    <item>
      <title>PowerUp</title>
      <link>https://solvere.app/tutorials/guides/powerup/</link>
      <pubDate>Sat, 28 Mar 2026 00:00:00 +0000</pubDate>
      <dc:creator>Solvere Labs</dc:creator>
      <category>windows</category><category>privilege-escalation</category><category>enumeration</category><category>powershell</category><category>post-exploitation</category><category>unquoted-service-path</category>
      <guid>https://solvere.app/tutorials/guides/powerup/</guid>
      <description>A practical PowerUp guide: run the PowerSploit Windows privesc auditor, read its check output honestly, focus on the high-signal service and path findings, and keep it lab-safe.</description>
    </item>
    
    <item>
      <title>LinPEAS</title>
      <link>https://solvere.app/tutorials/guides/linpeas/</link>
      <pubDate>Sat, 28 Mar 2026 00:00:00 +0000</pubDate>
      <dc:creator>Solvere Labs</dc:creator>
      <category>linux</category><category>privilege-escalation</category><category>enumeration</category><category>linpeas</category><category>post-exploitation</category><category>sudo</category><category>suid</category>
      <guid>https://solvere.app/tutorials/guides/linpeas/</guid>
      <description>The LinPEAS quick reference: the flags that matter, a modular copy-paste cheat sheet, and a worked breakdown of every real situation. Deliver the script to a target, run and save a clean no-color report, tune the depth (stealth, all-checks, extra, regex), scope checks by group or MITRE technique, grep the high-signal findings, and read the color legend honestly.</description>
    </item>
    
    <item>
      <title>Mimikatz</title>
      <link>https://solvere.app/tutorials/guides/mimikatz/</link>
      <pubDate>Tue, 24 Mar 2026 00:00:00 +0000</pubDate>
      <dc:creator>Solvere Labs</dc:creator>
      <category>windows</category><category>active-directory</category><category>mimikatz</category><category>pass-the-hash</category><category>dcsync</category><category>post-exploitation</category>
      <guid>https://solvere.app/tutorials/guides/mimikatz/</guid>
      <description>A practical Mimikatz guide for authorized AD labs: what it extracts, the core modules, how to read the output, and the defenses that stop it.</description>
    </item>
    
    <item>
      <title>Evil-WinRM</title>
      <link>https://solvere.app/tutorials/guides/evil-winrm/</link>
      <pubDate>Fri, 20 Mar 2026 00:00:00 +0000</pubDate>
      <dc:creator>Solvere Labs</dc:creator>
      <category>windows</category><category>active-directory</category><category>winrm</category><category>evil-winrm</category><category>post-exploitation</category><category>lateral-movement</category>
      <guid>https://solvere.app/tutorials/guides/evil-winrm/</guid>
      <description>A practical Evil-WinRM guide: get an interactive WinRM shell on Windows with a password, hash, or certificate, move files, load scripts, and stay inside scope.</description>
    </item>
    
  </channel>
</rss>
