htpasswd

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Juicy D. Links
    So Fucking Banned
    • Apr 2001
    • 122992

    #1

    htpasswd

    htpasswd -c .htpasswd mythick cock

    Then i get command not found...

    What should i do?>
  • NaughtyJenn
    Confirmed User
    • Apr 2003
    • 7355

    #2
    sorry im using that function right now, give me a few to release it

    Comment

    • fsfaz
      Confirmed User
      • Apr 2003
      • 747

      #3
      Try this instead ...

      /usr/local/bin/htpasswd -c .htpasswd mythick cock

      Comment

      • juicylinks
        So Fucking Banned
        • Apr 2001
        • 122992

        #4
        Originally posted by fsfaz
        Try this instead ...

        /usr/local/bin/htpasswd -c .htpasswd mythick cock

        nope I think i gotta install that module

        Comment

        • fsfaz
          Confirmed User
          • Apr 2003
          • 747

          #5
          Originally posted by juicylinks



          nope I think i gotta install that module

          Do you have apache installed? I'm pretty sure it comes with Apache. What O/S u running? FreeBSD, Redhat?

          Comment

          • JDog
            Confirmed User
            • Feb 2003
            • 7453

            #6
            /usr/local/apache/bin/htpasswd
            NSCash now powering ReelProfits.com
            ALSO FEATURING: NSCash.com :: SoloDollars.com :: ReelProfits.com :: BiminiBucks.com :: VOD
            PROGRAMS COMING SOON: Greedy Bucks :: Vengeance Cash
            NOW OFFERING OVER 60 SITES
            CONTACT :: JAMES SMITH :: CHIEF TECHNOLOGY OFFICER :: ICQ (711385133)

            Comment

            • juicylinks
              So Fucking Banned
              • Apr 2001
              • 122992

              #7
              Originally posted by fsfaz



              Do you have apache installed? I'm pretty sure it comes with Apache. What O/S u running? FreeBSD, Redhat?
              Freebsd

              Comment

              • Sifu
                Confirmed User
                • Oct 2003
                • 1791

                #8
                ICQ: 317-769-855


                Comment

                • JDog
                  Confirmed User
                  • Feb 2003
                  • 7453

                  #9
                  Originally posted by juicylinks


                  Freebsd
                  do a locate htpasswd ;)
                  NSCash now powering ReelProfits.com
                  ALSO FEATURING: NSCash.com :: SoloDollars.com :: ReelProfits.com :: BiminiBucks.com :: VOD
                  PROGRAMS COMING SOON: Greedy Bucks :: Vengeance Cash
                  NOW OFFERING OVER 60 SITES
                  CONTACT :: JAMES SMITH :: CHIEF TECHNOLOGY OFFICER :: ICQ (711385133)

                  Comment

                  • JDog
                    Confirmed User
                    • Feb 2003
                    • 7453

                    #10
                    hit me up on ICQ and I could help you out!

                    jDoG
                    NSCash now powering ReelProfits.com
                    ALSO FEATURING: NSCash.com :: SoloDollars.com :: ReelProfits.com :: BiminiBucks.com :: VOD
                    PROGRAMS COMING SOON: Greedy Bucks :: Vengeance Cash
                    NOW OFFERING OVER 60 SITES
                    CONTACT :: JAMES SMITH :: CHIEF TECHNOLOGY OFFICER :: ICQ (711385133)

                    Comment

                    • fsfaz
                      Confirmed User
                      • Apr 2003
                      • 747

                      #11
                      Originally posted by juicylinks


                      Freebsd

                      Try doing a "which htpasswd". If not, do a "locate htpasswd".


                      Hopefully one of them will tell you the path to it. If not, what's your ICQ #?

                      Comment

                      • mryellow
                        Confirmed User
                        • May 2001
                        • 934

                        #12
                        To generate a password you can make a quick perl script which
                        crypts your input and gives you the hash to put in your htpasswd
                        file.

                        Code:
                        $pass = $ENV{'QUERY_STRING'};
                        $passcrypt = crypt($pass,$pass);
                        
                        print "Content-type: text/html\n\n";
                        print "\|$passcrypt\|\n";
                        print "\n";
                        -Ben
                        Cyberwurx Hosting
                        After trying 5 different hosts, I found the best.
                        Since 1997 I've had 2 hours of downtime.
                        Fast support, great techs, no hype, no gimmicks.

                        <- I in no way endorse whatever just got stuck on the left of my post.

                        Comment

                        • kad
                          Confirmed User
                          • Feb 2003
                          • 735

                          #13
                          Originally posted by fsfaz



                          Try doing a "which htpasswd". If not, do a "locate htpasswd".


                          Hopefully one of them will tell you the path to it. If not, what's your ICQ #?
                          Which wont work. Which only looks in the shells path. Locate might if the file database is up to date.
                          lol internet.

                          Comment

                          • juicylinks
                            So Fucking Banned
                            • Apr 2001
                            • 122992

                            #14
                            Originally posted by Sifu
                            you sale content?

                            Comment

                            • Lane
                              Will code for food...
                              • Apr 2001
                              • 8496

                              #15
                              tried this?

                              /usr/local/apache/bin/htpasswd

                              Comment

                              • SomeCreep
                                :glugglug
                                • Mar 2003
                                • 26118

                                #16
                                Lots of 10000+ posters are sporting new quickbuck sigs. They must be paying some serious green

                                Webair Hosting

                                I use and recommend Webair for hosting.

                                Comment

                                • footguy
                                  Registered User
                                  • Oct 2002
                                  • 30

                                  #17
                                  Hi.

                                  whereis htpasswd

                                  This will do a couple things. It will show you if the binary exists...for example /usr/local/sbin/yada yada......

                                  if it does exist as a binary then that means that the directory is not in your PATH. You can either add it to your PATH or just switch over to that directory and run it from there....
                                  or type the full path to the binary.


                                  If NO binary exists, it can be made from PORTS. I love ports.......
                                  the whereis htpasswd will show you which dir htpasswd is in.
                                  just cd over there and "make" it.... The rest is done automatically......before you know it poof you got htpasswd.

                                  Comment

                                  • Sneka
                                    Confirmed User
                                    • Jan 2003
                                    • 413

                                    #18
                                    yeah try a locate htpasswd, then go to the directory and try again:
                                    htpasswd -c .htpasswd mythick cock

                                    command looks good btw

                                    Comment

                                    • fsfaz
                                      Confirmed User
                                      • Apr 2003
                                      • 747

                                      #19
                                      Originally posted by kad


                                      Which wont work. Which only looks in the shells path. Locate might if the file database is up to date.

                                      And your genius idea was?

                                      Comment

                                      Working...