<?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: Dylan Kim</title>
    <description>The latest articles on DEV Community by Dylan Kim (@sia324189).</description>
    <link>https://dev.to/sia324189</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1476637%2F0033651e-aa15-4588-9c89-72be42d78437.jpg</url>
      <title>DEV Community: Dylan Kim</title>
      <link>https://dev.to/sia324189</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sia324189"/>
    <language>en</language>
    <item>
      <title>Hack the box</title>
      <dc:creator>Dylan Kim</dc:creator>
      <pubDate>Thu, 09 May 2024 02:41:12 +0000</pubDate>
      <link>https://dev.to/sia324189/hack-the-box-5179</link>
      <guid>https://dev.to/sia324189/hack-the-box-5179</guid>
      <description>&lt;p&gt;Hack The Box aims to make hacking a new gaming paradigm through an intuitive and captivating user experience. A user-centric approach guides all our new product and brand endeavors. To the left of the Dashboard is the navigation menu.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Brute Force</title>
      <dc:creator>Dylan Kim</dc:creator>
      <pubDate>Thu, 09 May 2024 02:37:01 +0000</pubDate>
      <link>https://dev.to/sia324189/brute-force-ij1</link>
      <guid>https://dev.to/sia324189/brute-force-ij1</guid>
      <description>&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvawsvw3271e1vamjsvks.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvawsvw3271e1vamjsvks.png" alt="Image description" width="746" height="443"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;💡 "Attack methods that substitute every possible value to unlock a particular password"&lt;/p&gt;

&lt;p&gt;It is also called a 'indiscriminate encryption attack'.&lt;/p&gt;

&lt;p&gt;It can be defined as an attack method that attempts to hack a device connected to the network by randomly and continuously entering a password, PIN number, and encryption key.&lt;/p&gt;

&lt;p&gt;Since all possible values must be substituted, a pre-file that can store that much data is usually required.&lt;/p&gt;

&lt;p&gt;It's a fairly old style of attack, but it's still effective and still popular.&lt;/p&gt;

&lt;p&gt;The criterion for success of this attack is the 'time' it takes to crack a password.&lt;/p&gt;

&lt;p&gt;(Anyway, it's an attack that's going to break through one day)&lt;/p&gt;

&lt;p&gt;The longer the password, the more time it takes to crack it.&lt;/p&gt;

&lt;p&gt;According to Cloudflare,&lt;/p&gt;

&lt;p&gt;If you use 15 million keystroke attempts per second, a seven-character password cracks in nine minutes.&lt;/p&gt;

&lt;p&gt;However, it takes 350,000 years to crack a 13-character password in the same way.&lt;/p&gt;



&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8re6ftpu05bti5pue5kj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8re6ftpu05bti5pue5kj.png" alt="Image description" width="600" height="347"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1) When generating passwords, it is recommended to generate complex passwords with at least a certain length, including case/special characters/numbers, etc.&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;(page where password stability can be tested)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://howsecureismypassword.net/"&gt;https://howsecureismypassword.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2) Set up an account lock function to prevent further login attempts if the login failure exceeds a certain number of times&lt;/strong&gt; (significantly lowers the success rate of the attack)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3) Added the ability to unlock the account after a certain period of time, or to initialize the password through the user's additional authentication (mobile, email, etc.)&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>dvwa</category>
      <category>bruteforce</category>
      <category>hacker</category>
      <category>webhacking</category>
    </item>
    <item>
      <title>Preparation (Installation, environment settings)</title>
      <dc:creator>Dylan Kim</dc:creator>
      <pubDate>Wed, 08 May 2024 03:28:03 +0000</pubDate>
      <link>https://dev.to/sia324189/preparation-installation-environment-settings-3hci</link>
      <guid>https://dev.to/sia324189/preparation-installation-environment-settings-3hci</guid>
      <description>&lt;p&gt;Finally, my long-awaited first DVWA web hacking project has begun.&lt;/p&gt;

&lt;p&gt;I've walked a lot of roads.&lt;/p&gt;

&lt;p&gt;There were times when it was a little hard, but I grew dramatically.&lt;/p&gt;

&lt;p&gt;And in the future, it will grow in a more positive direction.&lt;/p&gt;

&lt;h2&gt;
  
  
  Apache2 Settings
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;a reference page&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzacecqisl3z84zqacoed.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzacecqisl3z84zqacoed.png" alt="Image description" width="800" height="525"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;First, I will install the necessary environments in Cali Linux.&lt;/p&gt;

&lt;p&gt;I set up apache2, which will serve as the most basic web server.&lt;/p&gt;

&lt;h2&gt;
  
  
  MySQL settings
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5q4joevan7wzyy00mayk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5q4joevan7wzyy00mayk.png" alt="Image description" width="800" height="442"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnw3x9wm8totedmalenq4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnw3x9wm8totedmalenq4.png" alt="Image description" width="633" height="503"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I set up mysql to serve as a database.&lt;/p&gt;

&lt;h2&gt;
  
  
  Installing and Setting Up DVWA
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwjhjieut0rcnun7wn8ew.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwjhjieut0rcnun7wn8ew.png" alt="Image description" width="566" height="336"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fk93h31otwzd7mcuiqtxp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fk93h31otwzd7mcuiqtxp.png" alt="Image description" width="800" height="191"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjgunjyd89x16g8epxidv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjgunjyd89x16g8epxidv.png" alt="Image description" width="387" height="208"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I downloaded the DVWA from Github as follows and set up the necessary files.&lt;/p&gt;

&lt;h2&gt;
  
  
  DVWA access
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjzjoe25i6m8y2thcclo7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjzjoe25i6m8y2thcclo7.png" alt="Image description" width="800" height="441"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you access through localhost, you will see the login screen as described above.&lt;/p&gt;

&lt;p&gt;id: admin&lt;/p&gt;

&lt;p&gt;pw: password&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fx75vla11yzuj0820j0ic.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fx75vla11yzuj0820j0ic.png" alt="Image description" width="800" height="691"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The initial screen appears, and when you press the Create/Reset Database below, the initial setting is automatically completed, and it returns to the login screen.&lt;/p&gt;

&lt;p&gt;If you log in again,&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fht85dd7g0mo87flq554b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fht85dd7g0mo87flq554b.png" alt="Image description" width="800" height="696"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An environment for practice will be established as shown in the figure.&lt;/p&gt;

</description>
      <category>hacking</category>
      <category>dvwa</category>
    </item>
    <item>
      <title>Web Hacking - DVWA</title>
      <dc:creator>Dylan Kim</dc:creator>
      <pubDate>Wed, 08 May 2024 03:22:13 +0000</pubDate>
      <link>https://dev.to/sia324189/web-hacking-dvwa-3c9c</link>
      <guid>https://dev.to/sia324189/web-hacking-dvwa-3c9c</guid>
      <description>&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4y49s00imp8gubtw8fr9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4y49s00imp8gubtw8fr9.png" alt="Image description" width="622" height="392"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;✨ This is the write-up for low, medium and high security levels of all labs of DVWA (Damn Vulnerable Web Application), written by D.Kim.&lt;/p&gt;

&lt;p&gt;Damn Vulnerable Web Application (DVWA) is a PHP/MySQL web application that is damn vulnerable. Its main goal is to be an aid for security professionals to test their skills and tools in a legal environment, help web developers better understand the processes of securing web applications and to aid both students &amp;amp; teachers to learn about web application security in a controlled class room environment.&lt;/p&gt;

&lt;p&gt;The aim of DVWA is to practice some of the most common web vulnerabilities, with various levels of difficulty, with a simple straightforward interface. Please note, there are both documented and undocumented vulnerabilities with this software. This is intentional. You are encouraged to try and discover as many issues as possible.&lt;/p&gt;

</description>
      <category>dvwa</category>
      <category>hacking</category>
    </item>
    <item>
      <title>Newbie!</title>
      <dc:creator>Dylan Kim</dc:creator>
      <pubDate>Wed, 08 May 2024 03:21:10 +0000</pubDate>
      <link>https://dev.to/sia324189/newbie-427l</link>
      <guid>https://dev.to/sia324189/newbie-427l</guid>
      <description>&lt;p&gt;Hiya!&lt;br&gt;
just joined DEV.to!&lt;/p&gt;

</description>
      <category>hacker</category>
      <category>ethicalhacking</category>
      <category>pentester</category>
    </item>
  </channel>
</rss>
