<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Mukaila Samsondeen</title>
    <description>The latest articles on DEV Community by Mukaila Samsondeen (@samsondeen).</description>
    <link>https://dev.to/samsondeen</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F88905%2Fce89edb5-4da9-4ba4-9ab8-b512fd109aba.jpg</url>
      <title>DEV Community: Mukaila Samsondeen</title>
      <link>https://dev.to/samsondeen</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/samsondeen"/>
    <language>en</language>
    <item>
      <title>creating wordlist with python to bruteForce</title>
      <dc:creator>Mukaila Samsondeen</dc:creator>
      <pubDate>Sun, 24 Mar 2019 13:52:06 +0000</pubDate>
      <link>https://dev.to/samsondeen/creating-wordlist-with-python-to-bruteforce-njd</link>
      <guid>https://dev.to/samsondeen/creating-wordlist-with-python-to-bruteforce-njd</guid>
      <description>&lt;p&gt;"""Wordlist can be used for brute force.&lt;br&gt;
"""&lt;/p&gt;

&lt;h1&gt;
  
  
  creating wordlist with python
&lt;/h1&gt;

&lt;p&gt;import itertools&lt;/p&gt;

&lt;p&gt;letters = "1", "2", "3", "4", "5", "6", "7", "8", "9", "0"&lt;br&gt;
n = 6&lt;/p&gt;

&lt;h1&gt;
  
  
  Creating wordlist
&lt;/h1&gt;

&lt;p&gt;file = open("wordlist.txt", "w")&lt;/p&gt;

&lt;h1&gt;
  
  
  Generate combinations and then write to "wordlist"
&lt;/h1&gt;

&lt;p&gt;for wl in itertools.product(letters, repeat = n):&lt;br&gt;
    file.write("".join(wl) + "\n")&lt;/p&gt;

</description>
      <category>python</category>
      <category>wordlist</category>
      <category>bruteforce</category>
    </item>
  </channel>
</rss>
