User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 135
  6. 136
  7. 137
  8. 138
  9. 139
  10. 140
  11. ...
  12. 154
  13. 155
  14. 156
  15. 157

Posts by SBTlauien

  1. SBTlauien African Astronaut
    So how far have you made it OP?
  2. SBTlauien African Astronaut
    I'd say, craft a FCP packet and fire it at the port and see what happens?

    How can I do this?

    I've come across this code that will(I've verified via TCPdump on one of my phones) send packets from my wireless card.

    https://gist.github.com/austinmarton/1922600


    #include <arpa/inet.h>
    #include <linux/if_packet.h>
    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>
    #include <sys/ioctl.h>
    #include <sys/socket.h>
    #include <net/if.h>
    #include <netinet/ether.h>

    #define MY_DEST_MAC0 0x00
    #define MY_DEST_MAC1 0x00
    #define MY_DEST_MAC2 0x00
    #define MY_DEST_MAC3 0x00
    #define MY_DEST_MAC4 0x00
    #define MY_DEST_MAC5 0x00

    #define DEFAULT_IF "wlan0"
    #define BUF_SIZ 1024

    int main(int argc, char *argv[])
    {
    int sockfd;
    struct ifreq if_idx;
    struct ifreq if_mac;
    int tx_len = 0;
    char sendbuf[BUF_SIZ];
    struct ether_header *eh = (struct ether_header *) sendbuf;
    struct iphdr *iph = (struct iphdr *) (sendbuf + sizeof(struct ether_header));
    struct sockaddr_ll socket_address;
    char ifName[IFNAMSIZ];

    /* Get interface name */
    if (argc > 1)
    strcpy(ifName, argv[1]);
    else
    strcpy(ifName, DEFAULT_IF);

    /* Open RAW socket to send on */
    if ((sockfd = socket(AF_PACKET, SOCK_RAW, IPPROTO_RAW)) == -1) {
    perror("socket");
    }

    /* Get the index of the interface to send on */
    memset(&if_idx, 0, sizeof(struct ifreq));
    strncpy(if_idx.ifr_name, ifName, IFNAMSIZ-1);
    if (ioctl(sockfd, SIOCGIFINDEX, &if_idx) < 0)
    perror("SIOCGIFINDEX");
    /* Get the MAC address of the interface to send on */
    memset(&if_mac, 0, sizeof(struct ifreq));
    strncpy(if_mac.ifr_name, ifName, IFNAMSIZ-1);
    if (ioctl(sockfd, SIOCGIFHWADDR, &if_mac) < 0)
    perror("SIOCGIFHWADDR");

    /* Construct the Ethernet header */
    memset(sendbuf, 0, BUF_SIZ);
    /* Ethernet header */
    eh->ether_shost[0] = ((uint8_t *)&if_mac.ifr_hwaddr.sa_data)[0];
    eh->ether_shost[1] = ((uint8_t *)&if_mac.ifr_hwaddr.sa_data)[1];
    eh->ether_shost[2] = ((uint8_t *)&if_mac.ifr_hwaddr.sa_data)[2];
    eh->ether_shost[3] = ((uint8_t *)&if_mac.ifr_hwaddr.sa_data)[3];
    eh->ether_shost[4] = ((uint8_t *)&if_mac.ifr_hwaddr.sa_data)[4];
    eh->ether_shost[5] = ((uint8_t *)&if_mac.ifr_hwaddr.sa_data)[5];
    eh->ether_dhost[0] = MY_DEST_MAC0;
    eh->ether_dhost[1] = MY_DEST_MAC1;
    eh->ether_dhost[2] = MY_DEST_MAC2;
    eh->ether_dhost[3] = MY_DEST_MAC3;
    eh->ether_dhost[4] = MY_DEST_MAC4;
    eh->ether_dhost[5] = MY_DEST_MAC5;
    /* Ethertype field */
    eh->ether_type = htons(ETH_P_IP);
    tx_len += sizeof(struct ether_header);

    /* Packet data */
    sendbuf[tx_len++] = 0xde;
    sendbuf[tx_len++] = 0xad;
    sendbuf[tx_len++] = 0xbe;
    sendbuf[tx_len++] = 0xef;

    /* Index of the network device */
    socket_address.sll_ifindex = if_idx.ifr_ifindex;
    /* Address length*/
    socket_address.sll_halen = ETH_ALEN;
    /* Destination MAC */
    socket_address.sll_addr[0] = MY_DEST_MAC0;
    socket_address.sll_addr[1] = MY_DEST_MAC1;
    socket_address.sll_addr[2] = MY_DEST_MAC2;
    socket_address.sll_addr[3] = MY_DEST_MAC3;
    socket_address.sll_addr[4] = MY_DEST_MAC4;
    socket_address.sll_addr[5] = MY_DEST_MAC5;

    /* Send packet */
    if (sendto(sockfd, sendbuf, tx_len, 0, (struct sockaddr*)&socket_address, sizeof(struct sockaddr_ll)) < 0)
    printf("Send failed\n");

    return 0;
    }


    I'm not sure what to change in the code though as I'm a novice with C. This is the type of stuff I'm going to learn though. Lower level C code, mostly TCP/IP.

    Anyways, the packet data is going to be "222.173.190.239"(deadbeef) but I really don't know what to make it and don't know what to make the headers...
  3. SBTlauien African Astronaut
    The more interesting project I'm working on is an implementation of Yinsh. I'm trying to make it as purely functional as possible (drawing to the screen is obviously not pure, but everything up to rendering is) and that's pretty fun. I have the rules implemented and a 2D representation of the game but now I want to write a webGL frontend to it because I want to do at least one 3D graphics project before I die.

    I'd be kind of cool if you put the finished game on this site. Also, you may want to look into https://libgdx.badlogicgames.com/ (this has grow a bit since I've used it back before an official release). That's what I used to make my first game, and I used it to start others including two 3D games, but never finished any of these.

    I'm personally messing with some routers at free wifi hotspots and messing around with a little VirginMobile hotspot I have. I have come across one router where I a response from a high port that says "Vty password is not set".
  4. SBTlauien African Astronaut
    Well one thing we know for sure, and that's that we can't have a pussy running this community. Idio with the wife and kids, I don't know Zoks lifestyle but he seemed to hold up for a while so I wouldn't count him as a pussy, Arnox - serf explanatory. Lanny's holding up good, probably because he's not married, has no kids, not a whiny bitch, and is not a moral fag. The other's that didn't last for long didn't fit this persona.
  5. SBTlauien African Astronaut
    There are a shitload of tutorials that explain how to install Ubuntu. I even did it back when I knew shit.
  6. SBTlauien African Astronaut
    Looks good. I like Thai food more though.
  7. SBTlauien African Astronaut
    Appreciation given.
  8. SBTlauien African Astronaut
    Alright, if you didn't get drunk your first time drinking, then you can skip that that story and post your real 'first time drinking' story, or you can add a brief description of what happened(like I'm going to do).

    Me first...

    My first time drinking, wasn't an actual getting drunk experience. One of my older brothers stole a beer from a family gathering and we went to my uncles barn to drink it. I took one sip and didn't drink any more of it because I couldn't stand the taste.

    My first time getting drunk was my second time drinking. A guy I knew in high school that rode BMX as well and was a few years older than I, was having a party as his house and invited my older brother and I. My mom and step dad were going somewhere that weekend so it was a perfect time to go do something. My brother had his friend show up with an 18 pack(I believe) of budweiser. We had to walk a long ways to get to this guys house and on the way my brothers friend handed me a beer which I just decided to gulp all the way down in one gulp(because I somehow hated the taste of beer at that time). He handed me another and I began drinking normally.

    By the time we got there, I had drank only about four beers and felt buzzed. The party throwers parents hadn't left town, and instead were crashing this guys party. But it was funny because this guy was kind of a punk rocker type and kept the party going on his back porch while his parents watched from inside(it was his birthday so his parents didn't call the cops). We were beery bonging and I remember some pouring wine into the beer bong when I beer bonging a couple of beers.

    The party thrower said at one point that I couldn't leave until I puked or passed out because it was my first time drinking. But some guy wanted to fight my brothers friend so we decided to leave. On the way home I remember talking about how if the police spotted us, they might make us walk the line. So we were trying to walk on the white line that separates the street from the bicycle lane and I couldn't take more than three steps before stepping off of it.

    We made it home, I ate some bread, drank some water, and passed out. Woke up the next day felling great.

    Your turn.
  9. SBTlauien African Astronaut
    Hey, I'll have you know my borderline alcoholism and stagnant lifestyle have made me a fighting machine.

    Ah, you too? :)

    [h=2]Sploo, Rocklin, Sophie, Bill Krozbyler, Idio, Dissociator, Lanny and Arnox[/h]

    But really, who's Arnox and Idio? I never see these two around anymore. Sure they tried, but they abruptly gave up and didn't give any real notice. At least Zok gave a short notice(not to mention he held his forum much longer).
  10. SBTlauien African Astronaut
    Well, I'm Sally Brumice Theodore(SBT), but all of my friends call me Lauien.
  11. SBTlauien African Astronaut
    C:> paping www.google.com -p 5502 -c 4

    https://code.google.com/archive/p/paping/

    all paping is going to do is test connection establishment, won't tell you anything about the service

    Wouldn't this be the same as opening up a raw socket connection? I had actually came across Paping when searching for "pinging a port". I searched because it didn't really make sense to me.

    the only real way to get anything out of it is to try and guess what protocol it expects and throw data at it until it responds - first thing I'd try is just send some linefeeds via tcp then udp if you get no response, then as sophie suggested, try to guess the service based on the port and send a command in that protocol to see if you get a response. it might be worth using wireshark or tcpdump to inspect the initial connection, as the connect response from the server may give clues as to what the service is.

    I've tried connecting and sending line feeds via a raw socket but I believe it's TCP/IP and not UDP. What type of socket am I using if I'm using the below java code...


    s = new Socket();
    s.bind(new InetSocketAddress("0.0.0.0", 5555));
    s.connect(new InetSocketAddress(new InetSocketAddress("192.168.1.2", 5502)), 5000);
    outputStream = new PrintWriter(s.getOutputStream(), true);
    inputStream = new BufferedReader(new InputStreamReader(s.getInputStream()));
    ...
    ...
    ...
  12. SBTlauien African Astronaut
    Have you tried pinging it, and if so, did it reply? Try to Telnet into it to see if you get any return.

    Pinging a port...?

    I have tried connecting to it via a socket and it connects, so it's open. The ports that it has open are 53, 80, 443, and 5502. RIght now my port scanner basically just attemps to connect a raw socket to a port, with a set timeout, and if it conencts, then it closes it and list it as open. If the connection is refused, then it lists it as closed.

    I've to Telnet and SSH and I get no response. No response for anything, except for port 80 and 443. Port 443 is weird, because everything I do on via the normal browser is HTTP on port 80 and never goes to SSL. I have no idea where it is suppose to use SSL as I've been through all of the pages that I can access normally. It's a tricky little thing.
  13. SBTlauien African Astronaut
    I read an article somewhere that was about some guy that was port scanning his local police station or something and they knew about it for a while. He got arrested but I'm not sure if it was for the port scans.

    Anyways, not to let everyone down, but this is a device that I actually own that I'm doing this with. I'm just curious about what this port is doing open.

    The device is a VirginMobile Mingle Hotspot, model "AirCard 778S". I got it for free a while back and was going to use it for anonymous internet use via fake details and TOR, but since then the price plans have changed and it's better to just get a prepaid phone, root it, and use that for internet.

    Anyways, to get the the advanced menu, a MSL(master subsidy lock) code is needed(six digits I believe, possible characters). I tried a bunch at random and didn't get locked out so I made a Android program that would brute force "000000" through "999999". But when I ran it, it eventually did turn out that there was a limit on the number of passwords.

    So, I turned on Burp Suite and begin looking through the source code, and found a JavaScript file that had the last part of the link that I needed. I put the link in my browser, pressed enter, and volla, I'm in the advance menu.

    This is part of the JavaScript file, I coundn't post the whole thing because the max char limit here is 100,000...


    function ready() {
    sierra = new SierraData({

    "session": {
    "userRole": "Admin",
    "lang": "en",
    "secToken": "IxgZ0sdnUTnzpbtafCVTF7nXW0saBGZ"
    },

    "general": {
    "defaultLanguage": "en"
    }
    });


    sierraUI = new SierraUI();

    sierraForm = new SierraForm();


    function SprintNetworkSetupUIModule() {

    var _model;
    var _ui;
    var initialized = false;

    var $buttonUpdatePrl;
    var $buttonUpdateDataProfile;
    var $buttonUICCUnlock;


    var $buttonActivateSprintDatalink;

    var $buttonActivationCancel;
    var $buttonAdvancedSettings;
    var $buttonSPCunlock;
    var $buttonSPCcancel;

    var $buttonClosePrlSuccess;
    var $buttonClosePrlError;

    var $SPCform;
    var $SPCinput;

    var $networkButtons;
    var $navVMLink;
    var $navCarrierUsage;
    var $navMyAccount;
    var $messageWaitConnection;
    var $dialogActivationPlan;
    var $navVM;

    var SPCunlockInProgress;


    var lastSessionState;
    var lastSessionType;

    var sessionCanceled = false;
    var almostDoneActive = true;

    function _handleButtonActivationCancel(e) {
    sessionCanceled = true;
    sierra.submitRequest( new SierraRequest({
    'data': {'oma.sprint.cancel': 1}
    }));

    _ui.closeDialog();
    }


    function _handleButtonUpdatePrl(e) {


    sierra.submitRequest( new SierraRequest({
    'data': {'oma.sprint.start' : 'PRL'} // PRL
    }));

    }

    function _handleButtonUpdateDataProfile(e) {
    sierra.submitRequest( new SierraRequest({
    'data': {'oma.sprint.start': 'DC'}
    }));
    }

    function _handleButtonUICCUnlock(e) {
    sierra.submitRequest( new SierraRequest({
    'data': {'oma.sprint.start': 'SIMUNLOCK'}
    }));
    }

    function _handleSessionState() {
    var sessionState = sierra.get('oma.sprint.sessionState');
    var lastSessionTypeStart = sierra.get('oma.sprint.lastSessionTypeStart');
    var lastSessionResult = sierra.get('oma.sprint.lastSessionResult');
    var successAtemptCount = sierra.get("dsa.successAttemptCount");
    var generalActivated = sierra.get("general.activated");

    if($dialog_OobScreen && _.hasClass($dialog_OobScreen, "active") && generalActivated){
    _ui.closeDialog();
    almostDoneActive = true;
    return false;
    }

    if(sierra.get('general.TCAaccepted') === true && almostDoneActive){
    switch(sessionState) {
    case 'Idle':
    if(sessionCanceled) {
    _ui.closeDialog();
    if(lastSessionTypeStart === 'PRL') {
    _ui.dialog({'type': 'PrlError'});
    }
    sessionCanceled = false;
    }
    else if(lastSessionState && lastSessionState !== 'Idle') {
    if(lastSessionTypeStart === 'PRL') {
    /* Set a wait to handle out or order events from FW for a canceled session */
    setTimeout(function(){
    _ui.closeDialog();
    if (sierra.get('oma.sprint.lastSessionResult') == 0) {
    _ui.dialog({'type': 'PrlSuccess'});
    }
    else {
    _ui.dialog({'type': 'PrlError'});
    }
    },4000);
    }
    else if (lastSessionTypeStart === 'HFAFUMO' && (lastSessionResult == 0 || lastSessionResult == 32533)) {

    _ui.dialog({'type': 'ActivationPlan','locked': true });
    almostDoneActive = false;

    }
    else{

    if(($dialog_OobScreen && $dialog_OobScreenProgress) && (!_.hasClass($dialog_OobScreen, "active") && !_.hasClass($dialog_OobScreenProgress, "active"))){
    _ui.closeDialog();
    }

    }
    }

    break;
    case 'Pending':
    case 'Active':


    //handle immediate NI session that follows HFA FUMO and IDLE status is skipped
    //Can only get here if AP dialog not opened
    if(lastSessionType && lastSessionType === 'HFAFUMO' && lastSessionTypeStart === "NI") {
    //ignore this session and show Activation Plan
    _ui.dialog({'type': 'ActivationPlan','locked': true });
    almostDoneActive = false;
    return false;
    }

    if(successAtemptCount > 0 || generalActivated === true) {
    _ui.dialog({'type': 'Activation','locked': true });
    }
    else {
    _ui.dialog({'type': 'OobScreen', 'locked': true});
    }


    break;
    }
    }
    lastSessionState = sessionState;
    lastSessionType = lastSessionTypeStart;
    }


    function _handleButtonActivateSprintDatalink(e) { _showSPCform('manual'); }
    function _handleButtonAdvancedSettings(e) { _showSPCform('advanced'); }

    function _handleSPClockStatus() {

    switch(sierra.get('general.SPClockStatus')) {
    /*case 'NoRequest':*/
    case 'SPCLocked':
    _ui.dialog({'type': 'SPCInvalid'});

    break;

    case 'MaxSPCRetries':
    _ui.dialog({'type':'SPCMaxRetries'});
    break;
    }
    }



    function _handleButtonSPCunlock(e) {

    SPCunlockInProgress = $SPCform.attr('class');

    sierra.submitRequest( new SierraRequest({
    'data': {'general.SPCunlock' : $SPCinput.val()},
    'error': function() {
    _hideSPCform();
    SPCunlockInProgress = null;
    setTimeout(_handleSPClockStatus,3000);

    },
    'success': function() {
    switch(SPCunlockInProgress) {
    case 'advanced':
    window.location.hash = [B]'#settings/network/advanced'[/B];
    break;
    case 'manual':
    window.location.hash = [B]'#settings/network/manual'[/B];
    break;
    }
    SPCunlockInProgress = null;
    }
    }));
    _hideSPCform();


    }


    Here are pictures of the advanced menus. In the second one, I can change the 3g setting and save it, but when I fill in the feilds for the 4g settings and click 'submit', I get an error.

    I have no idea what these setting are for. As far as the port goes, I still have gotten a response from it.



  14. SBTlauien African Astronaut
    Niggas be steppin, I be steppin back into dem. Tore dat nigga up.
  15. SBTlauien African Astronaut
    The port is 5502 - [FONT=Helvetica][SIZE=12px]Radio Free Ethernet

    What can I do now that I know it's open?[/SIZE][/FONT]
  16. SBTlauien African Astronaut
    I have a port on a device that is open but it wont give me any response when I connect to it and wont give me any response when I send it random data.

    The port number is a high number with no know default protocol.

    What are my options?
  17. SBTlauien African Astronaut
    What is the absolute most you would do for a klondike bar?

    I'd shoplift one but that's about it.
  18. SBTlauien African Astronaut
    Except for being able to post CP sadly.

    We don't even get a CP button like we had on Zoklet.
  19. SBTlauien African Astronaut
    So back on topic. When are we going to set this up Lanny?
  20. SBTlauien African Astronaut
    Lanny is the first of his kind… a Virtual Transvestite. This means that he only cross dresses as an Internet user, but not in real life.

    I do both. ;)
  1. 1
  2. 2
  3. 3
  4. ...
  5. 135
  6. 136
  7. 137
  8. 138
  9. 139
  10. 140
  11. ...
  12. 154
  13. 155
  14. 156
  15. 157
Jump to Top