jmb2006
Members-
Content Count
100 -
Joined
-
Last visited
Everything posted by jmb2006
-
Help With Geting Your Ip With A Script And Loging It
jmb2006 replied to everett's topic in Programming
ok then try this: <?php$ip = $REMOTE_ADDR;$host = gethostbyaddr($ip);$file = "file.html";if (is_writable($file)) {$outfile = fopen($file, "a+");$input = "<font face=\"arial\" size=\"3\"><b>IP:</b> $ip<br><b>Host:</b> $host";fputs($outfile, "\r\n$input");fclose($outfile);}else {print "File \"$file\" is not writable check permissions.";chmod($file, 0777);}?> if you get the error again refresh the page. -
Help With Geting Your Ip With A Script And Loging It
jmb2006 replied to everett's topic in Programming
<?php$ip = $REMOTE_ADDR;$host = gethostbyaddr($ip);$file = "file.html";if (is_writable($file)) {$outfile = fopen($file, "a+");$input = "<font face=\"arial\" size=\"3\"><b>IP:</b> $ip<br><b>Host:</b> $host";fputs($outfile, "\r\n$input");fclose($outfile);}else {print "File \"$file\" is not writable check permissions.";}?> there ya go -
What Country To Do You Live In, And Rate It.
jmb2006 replied to Fu Still Better's topic in General Discussion
i live in South Yorkshire, England in the UK i give it a rating of 2/10.Its completely messed up where i live, you can just about get any drug you want ranging from weed to heroine and you dont have to walk far. People are always getting beat up and alot of people round where i live have guns, oh yeah also alot of people are growing weed where i live as well. So id say 2/10 was pretty generous. -
great, thanks alot!!
-
I have created this tutorial to demonstate some of the more advance searching techniques in the worlds most famous search engine Google (google.com for the none of you that dont know). I am going to discuss features that can be used to googles best abilities and find almost any thing. Using this technique you can download just about any tutorials, texts, ebooks, mp3s etc... first off i do not promote nor do i encourage warez so by reading this (in your head or out loud) you give up the right to blame me if you get caught. Right then now that thats out of the way lets get onto some searching!! :: Keyword Amounts :: When you go to Google and you plan on searching something e.g. networking Google will search its billions of indexed web pages for the string "networking" that occurs in the page at least once and displays the link to it on the search results. However, what would happen if you typed: networking networking Google would search its mass of indexed webpages and display the links to the ones that have the word Networking twice or more. So typing something twice in Google will probably get more descriptive/detailed web pages. :: Quotes :: Ahh now, here i will introduce quotes. In the last paragraph i explained that when you type a keyword into Google then it searches is massive vault of indexed webpages for that keyword, well what if you wanted to search google for this: Fair enough, you want to search for harry potter, but can you spot whats wrong with it? It would find pages that have "harry potter" in and "harry" and "potter" giving you a list of pages completely off the mark and nothing to do with harry potter. This is where we introduce quotes, so enclose quotes around your search string to form this: now Google would only look for pages with the string "Harry Potter" in the page, so if a page had "harry" in but not "potter" Google wouldn't include that in its results. :: Including and Excluding Keywords :: Now i find this interesting, with this you can really make Google do tricks like a Dog giving you its paw. Whilst searching a subject you may be trying to search a specific area of a subject. E.g. you search for "Networking" but you only want to find pages on Wireless networking, well as in the last paragraph you cannot simply type: try typing... you will get information on wireless networking but you will also still get information on wired/normal networking techniques. E.g. if a page has this written on it: This is where "Including and Excluding" comes in, using the + and - signs you can include and exclude strings from your search. E.g. will give you information on wireless networking routers but nothing on wired networking, see what i mean. :: Site and Link parameters :: I will now tell you about finding information on a certain website or finding out what sites are linking back to a specific site. Now the "site:url" command basically tells Google to only look for the following data on the site 'url'. E.g. will search the site "Xisto.com" for the string "Free Hosting" not "Free", not "Hosting" but "Free Hosting", if the website doesn't contain the exact string "Free Hosting" then Google will not return anything because it cant find anything. Another example: With that Google will search all websites that have the extension ".co.uk" appended to the end of their url and look through all the .co.uk websites for the words "Free" and "Email". Now onto the "link:" command. Now the link command finds links in its indexed webpages. For example you submit to Google, 'link:google.com', and it will find all the webpages with a link to google on it. Like the 'site:' command you can also search domain extensions. 'link:.org.uk' will find all the webpages with links to UK Organizations. :: Search Titles, URLs and Filetypes :: Google has the ability to search webpages' titles and urls. You can search for a keyword in the url or title, for example: will search for all the pages google has indexed on google.com, its just like the site: command except not as accurate in my opinion. One feature that can be said for the inurl command though is that it can search for filenames as well, e.g. 'inurl:hotmail.com/INDEX.HTML' where as the 'site:' command cannot, it can only search the url from: www. to .com/.org/.net/etc... Now about searching titles... the 'intitle:' is extremely handy, you can search for webpages on anything like this: will search for a harry potter fan site, you can also find empty directories issuing this command: intitle:"Index of /" because "Index of" is the default text shown on a directory with no index page and no htaccess code protecting it it will search all of its indexed pages for empty directories. Now onto the Filetypes, Google can also search specific filetypes, say c source code if you wanted to. The basic command is filetype: you can use this in conjunction with the site command to find some neat stuff, it can also be used maliciously you'll know what i mean after this. site:microsoft.com filetype:asp inurl:"admin/login" that will tell Google to look for the indexed pages of microsoft.com that are ASP pages and the url contains "admin/login" so basically it is looking for something like "microsoft.com/restricted/admin/login.asp" or something like that, you can now see why it is a security flaw, it can find pages you cant. :: Other Info :: Now Google can be stopped from peeking its nosy little robots into your site by creating a ROBOTS file, it basically tells automatic spider robots (automated programs sent from search engines like Google to index your pages and give the search engine a list of pages). Now im not going to go into the subject in this tutorial because this is on Google. But i have just done a quick search on Google and found: outfront.net/tutorials_02/adv_tech/robots.htm which is a tutorial on the subject. Now you may be curious to see what robot files look like, well lets use what i've shown you today, inurl:"robots.txt" filetype:txt Will search for all pages that has 'robots.txt' in the URL of the site and the filetype is a txt file. Just to let you know that all of the explained above togetther can create a very powerful search query and allow a user to find almost anything on Google and virtually the Internet because Google has Billions of pages indexed on more subjects you could ever think of. This has not been a complete search guide to Google but should get you started. You can find more info on advance google searching at: https://www.google.co.uk/help/operators.html or i can save you alot of time instead of reading all this and just go to Googles Advance Search form page https://www.google.com/advanced_search Hope you enjoyed it and found it very informative and edumacational Notice from rejected: Fixed BBCode, only 10 quote tags are allowed, so I changed the last few to code tags.
-
give the guy a break geese, he managed to find what like 50 links for us i dont think we could ask him to go through each individual one, find the extra info about them and post them back here, isn't that asking a little too much, if you want to see which ones give u a direct link to the file go through each one yourself same if you wanted to see the maximum storage.
-
What Do You Use Your Computer For? it seems I am way behind...
jmb2006 replied to spawn_syxx9's topic in Software
i cant really vote because i use my laptop for schoolwork, photo editing, video editing, c programming, watch dvds/videos, listen to music, playing games, so what i use my computer doesn't come under those choices. -
indeed you can find almost anything you want if you can use Google to its maximum flexibility, e.g. by using the intitle, inurl, site, link etc.. features.
-
WOW thanks alot for that list, out of all the times when i have a screenshot or another image i want to show and dont have a website i really am stuck in finding an image host. Did you already know all them or did you just spend an hour on google?
-
my laptop which i am on now has an lcd screen, it attracts loads of dust and other bits just fly onto the screen, i'd much rather prefer a plasma screen to an LCD screen, although LCD screens can be cleaned i've been told Plasma screens dont even need that, just a wipe every now and again. Also when u look at an LCD screen at an angle the colours change.
-
well you may or may not know this but say you have a head banner at the top of your site and is what 700kb in size, that will take a while to load especially on 56k dial-up, well in cases like this all you need to do is open up the banner in MSPaint then save it then exit paint, after that your banner should still be the same quality but now only around 200kb, works for me 80% of the time, if your going to do this make a backup of the image first otherwise you MIGHT end up ruining your banners quality forever unless you have the PSD saved
-
hey does anyone know any free software that changes your windows xp desktop backround randomly with the images in a specific location? i just have loads of wallpapers that i like so everytime i logon it would be a nice change, thanks for any info..
-
oh unlucky mate where do you live, because if you live where i live then its a regular thing. Didn't it have an alarm or something or are car alarms crap nowadays. Not so long back my uncles car got broken into and a few years back my grandads car got stolen. Hope whoever did it gets caught so you get ur car back so it leaves you with 32k to do whatever with lol.
-
How Many Flash Drives Do You Have? COUNT EM UP
jmb2006 replied to Mithshark's topic in Hardware Workshop
i have 2, a 128mb one which the location of is currently unknown and another one most recently bought at christmas is my 1gb one, dont go anywhere without it has all my music, games and school work on. -
hey i signed up and downloaded that last night its pretty cool graphics are great as well, only problem is that its a bit slow on my laptop, incase anyone reading this post wants to play it the game is slow on my laptop which is: Intel Celeron M 1.5ghz processor and 1gig of ram.
-
I Got This Problem With My Girl I need a good advice
jmb2006 replied to Rufus's topic in Dating And Relationships
for me even getting a girl to look at me is complicated lol anyway being the kind person i am i would just wait until the other person loses interest either that or flip a coin lol. -
Evidence For God. The ?real? evidence for a living God
jmb2006 replied to wild20's topic in General Discussion
i think there is a God, the whole biblical story seems far too complicated to have been simply made up. Besides i refuse to believe that humans, life, the earth, the world and all its wonders like technology were created by something other than a God. I know its difficult to believe that God exists whilst evil such as Saddam Hussein and the War in Iraq exists but God gave humans free will and with that gave humans to do whatever they want but why God lets this evil continue is a Mystery. We cannot solve everything, i believe that the reason we are on earth is to wonder why. Somethings are best left as they are and the cosmology of the universe should be left alone, im sure we will all find out when we die. -
Windows Vista Beta Testing What you think about it
jmb2006 replied to sader's topic in Operating Systems
well at the rate computers are increasing in power and decreasing in price vista will be no problem, i've seen 2ghz+, 180gig hdds, 1gb ram, 256mb ram on graphics, duel core for less than ?500. -
ok so its like this: the ICT technicians at my school are complete idiots, once last year at beginning of year 10 i managed to open up a program on the server that allows teachers to control the users in the same classroom, well i managed to get access to this program and had some fun with it, ever since then the technicians have banned me from the computers on the network, occassionally allowing me back on the computers only to ban me a few days later, well the last time i got banned all i did was go the UK Hacker News Network (*edit*[dot]com), its just a news website and they banned me and what was they're excuse "We checked your internet log and found you have been visiting hacking websites and we have banned you because of this." all i have to say on the matter is W.T.F. Notice from jlhaslip: As mentioned below, Hacking and discussion about Hacking will not be tolerated on this Forum. Closing Topic.
-
any conquer online players here? a friend told me about it and have been playing for a few days now, got 2 characters both Jamezar. 1, level 17 Warrior on Dreams > Faith Server and 2, level 5 InternArcher on Nature > Lightening, if you ask me its good but way too addictive, anyway it would be nice to talk to other plays on a message board instead of the ingame chat because i always get killed when i stop to talk lol.
-
Windows Vista Beta Testing What you think about it
jmb2006 replied to sader's topic in Operating Systems
lol besides doesn't windows vista need a 2+ghz processor and a gig of ram, when microsoft do release official versions it wont get far since the requirements are too much. Yeah it has great features but like all good/great things must come at a price! -
My Site Needs Your Review Come and say something please.
jmb2006 replied to Lyon2's topic in Websites and Web Designing
whoa that flash is crazy its good though, you create that all on ur own, that is great stuff. Personally i always thought flash was hard. Something that let you down though is the fonts, the fonts make it look kinda boring just thought id let you know. -
cool, counter strike source is an awesome game!! im definately joining. How long your clan been going?
-
ok first off im no good at writing tutorials so feel free to flame me (hey that rymes). Anyway in this tutorial i will basically show you how to send and receive email via the command-line terminal emulation program called Telnet. Now where shall i start, hmm.. Sending Email!! Sending Email Sending email requires a special type of server called an SMTP server (SMTP -> Simple Mail Transfer Protocol). SMTP is the protocol used to send email just like POP is the protocol used to receive. Now by default and most commonly SMTP servers run on port 25. To describe a port i will have to basically describe a connection. Think of a server as a block of flats/apartments and each flat/apartment (with its own individual number) is a port, so a port is just a way into another system. Anyway back to SMTP servers, so to send email you need an smtp server, your email provider should have one (smtp server list at end of tutorial). Anyway once you have your smtp server open up msdos (cmd) by going to Start > Run and typing in cmd and pressing enter. Then open up telnet and type "o smtpserver.host.domain smtpserverport". 'o' -> Open 'smtpserver.host.domain' -> Connection to Server 'smtpserverport' -> On This Port Anyway once your into the server you should be greeted by whats called a banner, a banner is just a message displayed to a user once he/she connects. The banner should look like this: just type "helo SERVERHERE" to let the server know your there and ready to start commanding it. next you need to establish where the email message is coming from so type: next you need to establish where the email message is going to so type: im not sure about the subject GOOGLE IT!! anyway now your ready to start typing your message. type "data" press enter. Enter your message and enter '.' on a line by itself press enter to finish the message, the server should then send the message, next just type quit to leave the smtp server and your done!! [sMTP Servers] i will now list some common email providers smtp servers. Gmail SMTP Server: smtp.gmail.com Hotmail: mx1.hotmail.com Yahoo: mx1.mail.yahoo.com Other: contact your email provider for your smtp server. Receiving Email! Right now that thats out of the way time to move on to receiving email. Now just like sending email, receiving email also needs a special type of server, its called a POP server, POP = Post Office Protocol, the protocol created for the purpose of receiving email. When you send email your sending it to the receipitents POP server. The default port for POP servers is 110. Open up a command prompt like you did before and type: next you need to login to the POP server, have your username and password ready.type USER followed your username, press return then type PASS followed by your password then press return and if everything is ok you should be logged in. Next to see if you have any messages type LIST which will return your messages, you wont see the subjects but instead the size in bytes of the email, bit confusing i know. You will also see the id number of the email e.g. 3 is obviously the largest email, to read the email you simply type: and finally to delete an email you type: well thats it for this tutorial hope you found it useful.