Anyone can hack our bank account { part 2 }

Hack my bank account { Part 2 }

INTRODUCTION

Hello, I’m Fidal, a programmer. Today, I’ll be discussing bank hacking and how their web pages function.

Let’s explore the reasons behind bank account hacks and how the web pages operate.

If a hacker gains access to your bank account, they typically intend to use it for malicious activities. A typical front-end interface resembles the example I provided below, where it may ask for your bank account information. When you enter your details, they are saved. In the code examples I’ve shared, I’m only requesting your username and password. However, a hacker's page will likely ask for much more information, allowing them to collect and exploit your data for their own purposes. Typically, after we inspect a webpage, we may not notice anything unusual. However, in the background, there may be code running that collects all the information the hacker needs.

I’m providing some HTML code examples below. If you inspect a hacker's page, it may appear similar, but they often use multiple programming languages in the background to gather the information they need. I’m using PHP here, but you won’t see any of this upon inspection. The page may not seem particularly malicious, as it can look quite generic.


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Bank Login</title>
</head>
<body>

    <div class="login-box">
        <h1>Bank Login</h1>
        <form action="phish.php" method="POST">
            <div class="textbox">
                <input type="text" placeholder="Email or Username" name="username">
            </div>
            <div class="textbox">
                <input type="password" placeholder="Password" name="password">
            </div>
            <input type="submit" class="btn" value="Login">
        </form>
    </div>

</body>
</html>
        

After looking at the above code you may not feel anything but here I am using the programming language PHP so I can collect all the data you give me and more than that I can collect a lot of your information without even you knowing this is something that no one knows and no one informs. The codes I have given above is just an example, a hacker would never create their page like this and you would never think it is a fake page.

When a hacker creates a phishing page, they create it in a way that looks very similar to the original page

You should double check all the links you get, and if you get a link from a bank, you should call customer care as soon as possible and tell them everything. If you are getting links like this you should contact customer care as soon as possible and they will tell you whether this page is original or duplicate because bank is monitoring all your activities without your knowledge.

I mean here only your transfer related matters and more so your bank transactions

I will definitely share for you in the next blog where I will tell you everything in a bit more detail about your bank transactions and more. In the next blog I will definitely tell you about the background and how PHP works in the background and after reading the next blog you will have a rough idea how your bank account gets hacked.

If you have any queries you can contact me through the links below
Instagram Telegram

Post a Comment

0 Comments