Jump to content

jonathan Kokott

Members
  • Posts

    8
  • Joined

  • Last visited

Posts posted by jonathan Kokott

  1. I'm receiving a message on login to cpanel that says this:

     

    B.l.a.c.k H.a.t G.r.o.u.p

     

     

    Hacked By #BHG

    Member Team : [Net.Edit0r & DarkCoder & fr0nk & Amir-Magic & H3X & Milad.C0nn3ct0r& D3adly ]

     

    Yah0o.Id : ./Net.Edit0r@Att.Net , DarkCoder@Att.Net , Fr0nk@Rogers.Com , Sg_00700@Yahoo.Com , G0dr0ot3r@Yahoo.Com -

     

    [ ./Iranian HackerZ #Persian Gulf ]

     

    And i cant do anything now.

     

    I didn't think my password was weak, I'd be happy with simply cleaning and resetting the whole thing at this point.

     

    ~Jon

  2. Use
    #!/usr/bin/env perl

    for the first line.

     

    Didn't seem to help.

    I now have:

    #!/usr/bin/env perl
    
    print "Content-type: text/html\n\n";
    
    print <<EOTF;
    <html>
    <head>
    <title>hello, world</title>
    <body>
    <h1>hellow world</h1>
    </body>
    </html>
    EOTF

     

    I've converted end of line to both unix [LF] and windows [CRLF] and that doesn't seem to be it either. Any other ideas?

     

    Thanks again,

     

    ~Jon

     

  3. I'd really prefer not to use a content manager for this. I don't need something quite that complicated at this time.

     

    I've been trying to execute a simple perl script, but have been receiving the 500 error. The script has 0755 permissions and the file contains the following:

    -----

    #/usr/bin/perl

     

    print "Content-type: text/html\n\n";

     

    print <<EOTF;

    <html>

    <head>

    <title>hello, world</title>

    <body>

    <h1>hellow world</h1>

    </body>

    </html>

    EOTF

    ------

    the file is my "public_html/cgi-bin" folder.

    filename is "helloworld.cgi"

     

    I've successfully run this code on my machine, and I feel like I've read every tutorial online for this. Please help.

     

    ~Jon

     

  4. I'm generating html reports from field data and want the reports to be visible to other people in the work group.

     

    I'm not a web developer, and I'm not sure that this is possible.

     

    Here's what I've done so far:

    HTML reports are programatically uploaded via ftp to a username/home/guest report section.

    The main domain webpage has a link to where the reports should be moved to.

     

    How do I:

    Programatically move reports from username/home/guest to a location my web domain can link to as the reports come in?

    Programatically create a webpage listing these reports (I believe a PERL script is the way to go on this, I'm just not sure how to invoke the script only when new ftp upload occur. I wrote the code uploading the HTML files so maybe somewhere in there I could call the PERL script?)

     

    ~Jon

×
×
  • Create New...