Forum Replies Created

Viewing 15 replies - 346 through 360 (of 565 total)
  • long story short.. if you have php enabled in posts, or in some cms’s it can even be done by entering an extended url of the domain with certain characters in the url.. it bascially “tricks” the code in front of the database… say the php.. to enter information into the database that the “cracker” wants to change in the database.. it pretty much takes advantage of bugs and exploits in code to allow the “Cracker” to do things that shouldn’t normally be done.

    As for backing up… yes.. backing up nightly is probabally a good idea.. if you can, run it as a cron job to backup a database.. or find a way to do it on a routine schedule. Also, it depends on how often you change you site or add posts.

    there are plugins for one step backups for the database which can be used…

    keep in mind though that this is NOT the only reason you should back up a database like this. With all of the vast majority of plugins, themes and such available to change the standard wordpress installation.. there are MANY compatibility issues between plugins, themes, and even versions of WP and different plugins and themes. Files and hardrives corrupt too.

    Any reason is a good reason to backup. It hurts hard to lose a whole site.. or even a few posts from one from dataloss no matter the reason.

    If the site is a livelihood and citical, minutes and hours can cost. Even if it is not critical… think how much time you ahve spent on your site.. now multiply that times at least $30 or $40 an hour.. of the idea of losing such as memories which cant be replaced.

    Backup… period.

    And, its a good idea to backup before you make any changes wheter its code changes, upgrades, new posts, new themes, new plugins, or any changes.

    uggg I need to learn to quit rambling!

    ahh thats right… negative attention is still attention πŸ˜‰

    now if the media could get it right and call these people crackers and not hackers… but that is a whole nother ballgame πŸ˜‰

    welcome…. good deal, glad you go it fixed…
    grrrr the people that do that stuff drive me nuts! I have had that done before on other cms’s and it is annoying to no end. Though I never have mission critical data, I have to feel for people that do when those… -worms- do that sort of thing to others sites…

    sorry for the rant.. that stuff just gripes me πŸ™‚

    I thought about that after I posted and couldnt edit afterwards.. I meant to say post with meaningful content on forums and have the link as a sig… not to just psot the link and nothing else or post for no reason… good catch vkaryl

    Well.. I can only offer advice such as sign up with lots of blog searches.. there is a page also called http://www.blurtit.com …. join newsgroups and put your url in your signature.. since you are security minded, forums with tech support would be more happy to have someone as you to help when they are having problems..

    now that is all online.. but offline, have a batch of pens made with your url on them.. everywhere you go, use a pen and leave it to sign credit cards papers, sign stuff, leave a pen here and there at the pizza place.. make a bumper sticker for your car.. make t shirts.. all kinds of promo things. heck publish and add in the local classifieds or even online in the classifides..

    donate rulers to a high school art class that have your logo and url… or pencils to a daycare.. post it on bullatin boards in grocery stores… on telephone poles downtown (if that is legal where you are)… print out fliers 3 to a page, cut them and leave stacks at your favourite local shop.. donate pens there too… most places are always looking for a pen to write with, and customers have habits of taking them too

    sign up for search engines.. write email to all your freinds and make sure url is in there..

    all sorts of online and offline things you can do

    and.. i have learned over the years.. when you post in computer forums, slashdot, etc not only do you help others, but a lot of times you also learn from reading and helping others as well. You have skills, use them πŸ˜‰

    Forum: Fixing WordPress
    In reply to: Space in Page List

    Nah, you dont look stupid. I cant see what you are looking at so I do not know what you see to change.. Im sorry πŸ™ I wish I knew a better way to help you, I would!

    I could be way off base too.. so there might be a better way.

    Then change its name to something youll use?

    Forum: Fixing WordPress
    In reply to: Space in Page List

    <li class="page_item"><a href="http://justpuremood.com/?page_id=151" title="Life in the Navy">Life in the Navy</a><ul>

    <li class="page_item"><a href="http://justpuremood.com/?page_id=325" title="Military Links">Military Links</a></li>
    </ul>
    </li>

    <li class="page_item"><a href="http://justpuremood.com/?page_id=294" title="Glitter Name Tags">Glitter Name Tags</a>
    <ul>

    are probabally where you problems will be
    ————————————————-
    close the <li> before you open the <ul>

    <li class="page_item"><a href="http://justpuremood.com/?page_id=151" title="Life in the Navy">Life in the Navy</a></li><ul>

    remove the extra </li>
    <li class="page_item"><a href="http://justpuremood.com/?page_id=325" title="Military Links">Military Links</a></li></ul>

    same thing here, close one before you open another
    <li class="page_item"><a href="http://justpuremood.com/?page_id=294" title="Glitter Name Tags">Glitter Name Tags</a></li><ul>

    then remove the extra one at the bottom
    <li class="page_item"><a href="http://justpuremood.com/?page_id=319" title="Military/Patriotic Tags">Military/Patriotic Tags</a></li></ul></ul>

    most likely, it was a mysql injection somewhere.. could be from a plugin, could be if you have php enabled to execute in posts (from a plugin) could be from anything or any plugin. Only reaosn I thought of that is because I have had that happen before on other CMS’s that use php and mysql πŸ™

    Persoanlly, I think it is looking WAY much better!!
    Very nice πŸ™‚

    i noticed on the meta tags..

    you have
    <meta name="GENERATOR" content="Macromedia Dreamweaver 8">
    for example…

    if you add a forward slash at the end..
    <meta name="GENERATOR" content="Macromedia Dreamweaver 8" /> it will get rid of the warnings for those (there are a few like that)…

    that is how to close a meta tag or an element that is only opened and not using another tag to close it.

    also, on the <img align="left" src="../../../../images/cut_sec_small.png" width="160" height="25" border="0" alt="Cutaway Security">
    you can do the same with img tags..

    <img align="left" src="../../../../images/cut_sec_small.png" width="160" height="25" border="0" alt="Cutaway Security" />

    and anywhere you use a break tag or a horizontal rule
    <hr align="right" width="85%"><br>
    make it <hr align="right" width="85%" />

    for
    href="http://maps.google.com/maps?q=Dallas,+Texas&spn=0.102417,0.160958&hl=en"
    if you put it in there manuall ..
    change it to
    href="http://maps.google.com/maps?q=Dallas,+Texas&spn=0.102417,0.160958&amp;hl=en"

    for all urls with a & in them, you can replace it with
    &amp; to make it valid

    on inputs – same thing
    <input type="hidden" name="oe" value="ISO-8859-1">
    <input type="hidden" name="oe" value="ISO-8859-1" />

    though i dont know if those are in your source or where

    out of about 59 warnings for html (you have 0 errors.. but warnings can make things appear different in different versions of different browsers)that will prob get about 50 of them by cleaning those up That is jsut html though

    in xhtml you get
    Failed validation, 56 errors

    which a lot of those i mentioned will clean that up

    http://validator.w3.org/check?uri=http%3A%2F%2Fwww.cutawaysecurity.com%2Fblog%2F&charset=%28detect+automatically%29&doctype=Inline&ss=1

    I hope that did not all come out harsh..and I know you mentioned anyone else… so I hope you dont mind I posted again. I realy like your blog a lot! (Im a tech w a security forte) and I really think you have a great blog πŸ™‚

    Forum: Fixing WordPress
    In reply to: Space in Page List

    most likey because you have about 98 errors of broken elements, elements left out and other problems with the code…

    http://validator.w3.org/check?uri=http%3A%2F%2Fjustpuremood.com%2F&charset=%28detect+automatically%29&doctype=Inline&ss=1

    that is not xhtml valid either with errors…

    fix a lot of that and most likely itll be fixed

    a nice way of doing it is getting the html tidy plugin for firefox and checking your pages with it.. that will give you a start. though its html and not xhtml.. as i said itll give you a start. via tidy, youhave 100 warnings and no errors.. but that translates to 98 xhtml errors

    Forum: Plugins
    In reply to: Posting w/out Logging In

    create another user just for posting outside the admin and use that account to post with? .. that way you can give it whatever level of auth you want to?

    By the time you wait on someon else to do it.. it might save you time by copying and pasting the link at the bottom of the posts that need it ;).. unless you want to hire someone lol

    no offense meant to anyone.. πŸ™‚

    ok i must be doing this the wrong way.. but can you not put them in backticks?

    ‘I am trying this’ (This is not in backtics)
    vs
    'I am trying this' (This is in backtics)

    oh well.. interesting enough, the backtick changed the appearance of the quote here… oh no wonder it did the font too doh!

    hmm

    I am going to have to reread this.. I must have missed something.

    Oh well just ignore me. I dont know where I missed something, but I am sure I did.. so overlook me πŸ˜‰

    —–I had a blonde moment——-

    nice on moshu. I will have to keep that in mind also!

Viewing 15 replies - 346 through 360 (of 565 total)