<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>CTF on BITFRAGMENT</title>
    <link>https://bitfragment.com/tags/ctf/</link>
    <description>Recent content in CTF on BITFRAGMENT</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <copyright>&lt;a href=&#34;https://creativecommons.org/licenses/by-nc/4.0/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;CC BY-NC 4.0&lt;/a&gt;</copyright>
    <lastBuildDate>Mon, 03 Aug 2020 00:18:16 +0100</lastBuildDate>
    
	<atom:link href="https://bitfragment.com/tags/ctf/index.xml" rel="self" type="application/rss+xml" />
    
    
    <item>
      <title>TryHackMe - Easy Peasy Room</title>
      <link>https://bitfragment.com/posts/tryhackme-easy-peasy-room/</link>
      <pubDate>Mon, 03 Aug 2020 00:18:16 +0100</pubDate>
      
      <guid>https://bitfragment.com/posts/tryhackme-easy-peasy-room/</guid>
      <description>Before we begin, you can access this room by creating an account with tryhackme.com and browsing to this link to join it, or by simply searching for &amp;ldquo;Easy Peasy&amp;rdquo; under the Hacktivities tab.
Scanning &amp;amp; Enumeration Running nmap nmap -sV -sC -p- -oA nmap/all -vv 10.10.190.28 Nmap scan report for 10.10.190.28 Host is up, received syn-ack (0.093s latency). Scanned at 2020-08-03 10:01:19 BST for 208s Not shown: 65528 closed ports Reason: 65528 conn-refused PORT STATE SERVICE REASON VERSION 80/tcp open http syn-ack nginx 1.</description>
    </item>
    
    <item>
      <title>CTFs - A Simple Guide on Python Decoding</title>
      <link>https://bitfragment.com/posts/ctfs-a-simple-guide-on-python-decoding/</link>
      <pubDate>Thu, 30 Jul 2020 18:48:16 +0100</pubDate>
      
      <guid>https://bitfragment.com/posts/ctfs-a-simple-guide-on-python-decoding/</guid>
      <description>Ever since I started playing CTFs I found myself decoding various base flags and whilst some of them were pretty straight forward, occasionally, you will find one that is encoded several times and even using various base encodings in the process.
How to decode these with Python easily? Well, all you need is this:
import base64 f = open(&amp;#34;b64.txt&amp;#34;, &amp;#34;r&amp;#34;).read() for i in range(0,50): f = base64.b64decode(f) print(f) The idea behind it is very simple:</description>
    </item>
    
  </channel>
</rss>