Jump to content

pinkpanter

Members
  • Posts

    38
  • Joined

  • Last visited

Everything posted by pinkpanter

  1. din cauza asta e romania unde e, ca suntem un neam de praduitori. daca omu se da smecher lasa-l frate ca se arde el singur, nu cred ca tie ti-ar cadea bine daca ai fi facut ceva urat sa fi dat in primire...
  2. scuze ca ma bag si eu in topicul tau. sper ca nu te deranjeaza asta. caut si eu ceva baieti seriosi care au mailuri de us din database.... astept oferte pe privat. mersi
  3. daca tot avem cunoscatori pe aici, pun si eu o intrebare PS4 sau Xbox One care e mai bun ?
  4. iei o oala cu apa, o pui la fiert, cureti 5 morcovi, 1 pastranac, 2 cepe, jumate de gulie, le bagi in apa pusa la fiert, dupa aia pui si hardu la fiert, adaugi sare,piper dupa gust, lasi sa fiarba 20-25min apoi adaugi taietei, si aia e
  5. si dupa ce ia ban, o sa isi faca alt cont, si o sa dea alta teapa in timp
  6. pinkpanter

    Vand ...

    uggc://cbfgvzt.bet/vzntr/povktbpua/12qs0s9s/ nu gaseste asta
  7. eu propun ca la inregistrare sa puneti un mic test de verificare a IQ-ului. sper sa nu jignesc pe nimeni. da marea majoritate decat sa dea un search pe google, umple forumul cu toate prostiile. e doar o parere personala.
  8. l-ai bagat in ceata daca nu e capabil sa dea un search pe google ma indoiesc ca asta o sa il ajute.
  9. da scrie pe google : lista cu nume fete romanesti Aproximativ 9.330.000 (de) rezultate (0,29 secunde)
  10. daca esti la prima abatere iti iei cu suspendare si te pun sa mergi in fiecare luna la semnat
  11. pai in romania legile sunt facute in defavoarea cetatenilor. si in favoarea gurvernantilor. au vandut tara si bogatiile ei pe fata. nu se auto-sesizeaza politia. daca furi de foame, daca faci trafic cu tigari esti considerat cel mai de temut criminal. in schimb multi criminali sunt lasati in libertate ca cica nu reprezinta un pericol pentru societate. da un amarat de om care incearca sa isi rotunjeasca bugetul reprezinta un foarte mare pericol pentru societate...
  12. <?php $to = $_REQUEST['sendto'] ; $from = $_REQUEST['Email'] ; $name = $_REQUEST['Name'] ; $headers = "From: $from"; $subject = "Web Contact Data"; $fields = array(); $fields{"Name"} = "Name"; $fields{"Company"} = "Company"; $fields{"Email"} = "Email"; $fields{"Phone"} = "Phone"; $fields{"list"} = "Mailing List"; $fields{"Message"} = "Message"; $body = "We have received the following information:\n\n"; foreach($fields as $a => ${ $body .= sprintf("%20s: %s\n",$b,$_REQUEST[$a]); } $headers2 = "From: test <test@test.com>"; $subject2 = "your request is accepted"; $autoreply = "Thank you for contacting us. Somebody will get back to you as soon as possible, usualy within 48 hours. If you have any more questions, please consult our website at www.oursite.com"; if($from == '') {print "You have not entered an email, please go back and try again";} else { if($name == '') {print "You have not entered a name, please go back and try again";} else { $send = mail($to, $subject, $body, $headers); $send2 = mail($from, $subject2, $autoreply, $headers2); if($send) {header( "Location: http://www.YourDomain.com/thankyou.html" );} else {print "We encountered an error sending your mail, please notify webmaster@YourCompany.com"; } } } ?> am nevoie de ajutor din partea cuiva care se stie php sa imi spuna si mie cum adaug in acest script sa trimita un mesaj .html . acesta fiind in linia mesajului. $autoreply = "Thank you for contacting us. Somebody will get back to you as soon as possible, usualy within 48 hours. If you have any more questions, please consult our website at www.oursite.com"; .
  13. JGRhdGFiYXNlX2hvc3QgPSAibXlzcWx2d3MxLm1hZ21hLmNhIjsNCg0KIyB3aGF0IGlzIHRoZSBuYW1lIG9mIHRoZSBkYXRhYmFzZSB3ZSBhcmUgdXNpbmcNCiRkYXRhYmFzZV9uYW1lID0gInZ3czMwNTY3X18xIjsNCg0KIyB3aG8gZG8gd2UgbG9nIGluIGFzPw0KJGRhdGFiYXNlX3VzZXIgPSAidndzMzA1NjciOw0KDQojIGFuZCB3aGF0IHBhc3N3b3JkIGRvIHdlIHVzZSAgU21pJDMyDQokZGF0YWJhc2VfcGFzc3dvcmQgPSAnLUs4dlk5Ryc7
  14. probabil la noi nu or sa ajunga. daca o sa avem incontinuare comunisti din astia la conducere
  15. pinkpanter

    ajutor

    #!/bin/bash # bing-ip2hosts - Enumerate hostnames from Bing.com for an IP address. # Bing.com is Microsoft's search engine which has an IP: search parameter. # # By Andrew Horton aka urbanadventurer, MorningStar Security # Homepage: http://www.morningstarsecurity.com/research/bing-ip2hosts # # Version 0.3 Released September 21st, 2012. Updated because Bing mobile search changed. # Version 0.2 Released April 2nd, 2010 # Version 0.1 Released December 2nd, 2009 at Kiwicon III in New Zealand # # License: GPLv3 VERSION=0.3 TMPDIR=/tmp ANIMATION=1 OUTPUTIP=0 HTTPPREFIX=0 IP= PREFIX= if [ -z "$1" ] || [ "$1" == "-h" ] || [ "$1" == "--help" ]; then echo -e "bing-ip2hosts ($VERSION) by Andrew Horton aka urbanadventurer Homepage: http://www.morningstarsecurity.com/research/bing-ip2hosts Find hostnames that share an IP address with your target which can be a hostname or an IP address. This makes use of Microsoft Bing.com ability to seach by IP address, e.g. \"IP:210.48.71.196\". Usage: $0 [OPTIONS] <IP|hostname> OPTIONS are: -n\t\tTurn off the progress indicator animation -t <DIR>\tUse this directory instead of /tmp. The directory must exist. -i\t\tOptional CSV output. Outputs the IP and hostname on each line, separated by a comma. -p\t\tOptional http:// prefix output. Useful for right-clicking in the shell. " exit 1 fi while getopts "nipt:" optionName; do case "$optionName" in n) ANIMATION=0;; t) TMPDIR="$OPTARG";; i) OUTPUTIP=1;; p) HTTPPREFIX=1;; [?]) echo "Error"; exit 1;; esac done shift $(($OPTIND -1)) if [ -z "$1" ]; then echo "need an IP or hostname" exit 1 fi animation="/-\|" page=0 last_page_check= how_many=1 uniq_hosts=0 single_page= # if the parameter looks like an IP go ahead, otherwise resolve it if [ `echo "$1" | egrep "(([0-9]+\.){3}[0-9]+)|\[[a-f0-9:]+\]"` ]; then IP="$1" else IP=`resolveip -s "$1"` if [ "$?" != 0 ]; then echo "Error: cannot resolve $1 to an IP" exit fi fi all_hosts=`mktemp -p $TMPDIR -t bing-ip2hosts.tmp.XXXXXX` while [ -z "$last_page_check" ] && [ -n "$how_many" ] && [ -z "$single_page" ]; do if [ $ANIMATION == 1 ]; then echo -ne "\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b" echo -en "[ $IP | Scraping $how_many | Found $uniq_hosts | ${animation: $(( $page % 4 )) :1} ]" fi url="http://www.bing.com/search?q=ip%3A$IP&go=&qs=n&first=${page}0&FORM=PERE" out=`mktemp -p "$TMPDIR" -t bing-ip2hosts.tmp.XXXXXX` wget -q -O "$out" "$url" last_page_check=`egrep -o '<span class="sb_count" id="count">[0-9]+-([0-9]+) of (\1)' $out` # if no results are found, how_many is empty and the loop will exit how_many=`egrep -o '<span class="sb_count" id="count">[^<]+' $out|cut -d '>' -f 2|cut -d ' ' -f 1-3` # check for a single page of results single_page=`egrep -o '<span class="sb_count" id="count">[0-9] results' $out` # no captcha support or detection # pages will contain "Typing the characters in the picture above helps us ensure that a person, not a program, is performing a search" vhosts=`cat "$out"| egrep -o "<h3><a href=\"[^\"]+" $out |cut -d '"' -f 2` echo -e "$vhosts" >> "$all_hosts" uniq_hosts=`cat "$all_hosts" | cut -d '/' -f 3 | tr '[:upper:]' '[:lower:]' | sort | uniq | wc -l` # rm -f "$out" let page=$page+1 done if [ $ANIMATION == 1 ]; then echo fi uniq_hosts=`cat "$all_hosts" | cut -d '/' -f 3 | tr '[:upper:]' '[:lower:]' | sort | uniq` #rm -f "$all_hosts" if [ $OUTPUTIP == 1 ]; then PREFIX="$IP," fi if [ $HTTPPREFIX == 1 ]; then PREFIX="$PREFIX""http://" fi for h in `echo "$uniq_hosts"` do echo "$PREFIX$h" done imi spune si mie cineva care se pricepe daca se poate face asta in python si sa il rulez de pe windows.... dau o bere
  16. nu te supara...... crezi ca daca stiam mai intrebam ?
  17. pe google nu merge sa scaneze ?
  18. scuza-ma ca te intreb, dar in cazul in care in loc de ip ai h t t p : // t e s t . c o m / test / se poate face sa dea automat si o comanda de exemplu uname -a.
×
×
  • Create New...