Sinisterly
Your program in the official HC Programs? - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Hacking (https://sinister.ly/Forum-Hacking)
+--- Forum: Hacking Tools (https://sinister.ly/Forum-Hacking-Tools)
+--- Thread: Your program in the official HC Programs? (/Thread-Your-program-in-the-official-HC-Programs)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17


RE: Your program in the official HC Programs? - bluedog.tar.gz - 12-24-2013

(12-24-2013, 02:08 AM)CPlus Wrote:
(12-24-2013, 02:03 AM)bluedog.tar.gz Wrote: It looks better if the last button is aligned right of the field Tongue
Am not shure i understand whatt you mean.

You see the 'Change icon' button?
[Image: swag-yolo-1387845334.png]

Place it like that :Grin:


RE: Your program in the official HC Programs? - CPlus - 12-24-2013

Like so ?
[Image: dxfmvp.jpg]


RE: Your program in the official HC Programs? - bluedog.tar.gz - 12-24-2013

(12-24-2013, 03:03 AM)CPlus Wrote: Like so ?
[Image: dxfmvp.jpg]

Perfect :Kiss:


RE: Your program in the official HC Programs? - CPlus - 12-24-2013

Cool so you guys just move the thread or what?
And mary christmas. Smile


RE: Your program in the official HC Programs? - bluedog.tar.gz - 12-24-2013

(12-24-2013, 02:59 PM)CPlus Wrote: Cool so you guys just move the thread or what?
And mary christmas. Smile

Wait for @Deque Smile


RE: Your program in the official HC Programs? - Deque - 12-25-2013

(12-23-2013, 06:06 PM)The Arcanist Wrote: I would like an app that I made to be a part of HC Official tools too.

Name : Scout Port Scanner
Description : It is a port scanner. It uses multithreading to make things work a little faster and has a CLI as well as GUI for carrying out it's tasks.
Supported OS : All platforms containing jvm
Coded in : Java
Screenshot and Source : www.hackcommunity.com/Thread-Scout-Port-Scanner

I had plans to modify the app to scan a range of ip instead of a single host, but I really am not getting enough time to do so. I will do this part later.
Thank you for your time.

Moved to HC Tools.

Same for @CPlus


RE: Your program in the official HC Programs? - RaccoonCity_mybb_import13707 - 05-23-2014

Name: HC Skype Resolver

Description: A HTML/PHP script that gathers IP adresses connected to a Skype account.

Supported OS: Any platform~

Coded in: PHP and HTML

Screenshots:
[Image: mwzdn4v.png]

Code
Code:
@Deque
<!--CODED BY RACCOONCITY-->

<html>
<center><img src="http://cdn.hackcommunity.com/logo.png" alt="Hack Community - The Best Ethical Hacking Forums">

<STYLE type=text/css>

BODY {
    SCROLLBAR-FACE-COLOR: #000000;
    SCROLLBAR-HIGHLIGHT-COLOR: #000000;
    SCROLLBAR-SHADOW-COLOR: #000000;
    SCROLLBAR-BASE-COLOR: #000000;
    background-color: #000000;
    background-repeat:repeat-y;
}

H1 {
    color: red;
    font-family: -moz-fixed;
}

TD {
    color: red;
    font-family: -moz-fixed;
}

a:link {
COLOR: red;
}

a:visited {
COLOR: red;
}

a:hover {
COLOR: red;
}

a:active {
COLOR: red;
}

#TEXTBOX {
    width: 500px;
    height: 155px;
    border: 1px solid #FFFFFF;
    background-color : 1px solid transparent;
    padding: 40px;
    font-family: -moz-fixed;
    font-size: 16px;
    box-shadow: 0px 0px 5px 1px red;
}

INPUT, TEXTAREA {
    color: red;
    border: 1px solid red;
    background-color : #000000;
    box-shadow: 0px 0px 2px red;
}

.BLOCKHEAD {
    color: red;
    font-family: -moz-fixed;
}



.TEXT {
    color: red;
    font-family: ;
    font-size: ;
}

.SHOW {
    z-index: 2;
}

.HIDE {
   z-index: 1;
}
</STYLE>


<?php
if(isset($_POST['resolve'])){
    $username = $_POST['username'];
        strtolower($username);
        if($username == null){
            echo "<div style=\"color: red;\">Please enter a username</div>";

        } else {
                    $ip = file_get_contents("http://resolveme.org/api.php?key=51e77c68b11df&skypePseudo={$username}");

           echo "<div style=\"color: red;\">$ip</div>";
        }

}
?>

<form action="" method="POST">
    <input type="text" name="username" placeholder="Skype Username" /><br />
    <input type="submit" name="resolve" value="Resolve" />

</form>
</center>
</html>

@Deque


RE: Your program in the official HC Programs? - Deque - 05-24-2014

Alright, make a thread and I move it here.


RE: Your program in the official HC Programs? - Sir12 - 07-19-2014

May I post my Habbo Content Management System? I've been working for it about 2 years. I think its worth.


RE: Your program in the official HC Programs? - h3r0 - 07-22-2014

Name: Honeypy
Description: A honeypot port that when scanned, pinged, or touched in any way will block the intruder IP.
Supported OS: Testing on Linux (Requires Iptables)
Coded in: Python
Screenshots: [Image: 2xHDX0o.jpg]
Source: http://www.hackcommunity.com/Thread-Source-HC-HoneyPy-A-port-scanner-honeypot