Jump to content

davej

Moderator
  • Posts

    3,988
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by davej

  1. Oops, that isn't legitimate... I was trying to remove the Mustache code and simplify it.
  2. I saw some code which uses statements like this... <div class="img01" style="background-image:url(/utilities/imageurl.php?no=1651)"></div> Is this commonly done?
  3. As Dsonesuk says above, study the examples. Are you using GET or POST?
  4. One thing that you might be confusing is that client-side session storage is not the same as server-side session storage. Server-side session storage is secure, while Javascript sessionStorage is just a variation of localStorage which is a replacement for old-fashioned cookies. Server: https://www.w3schools.com/asp/asp_sessions.asp Client: https://www.w3schools.com/html/html5_webstorage.asp
  5. Hmmm... why do you expect server-side code to be able to see client-side Javascript variables? Server-side code runs and then the browser loads the page and then client-side Javascript runs.
  6. What are you using as server-side code?
  7. I get a 404 error on that page so I suspect the site designers are changing things. You might start here... https://www.w3schools.com/howto/howto_css_parallax.asp
  8. If your pages are properly marked as copyrighted material you could try mailing warning letters to the offenders. Javascript can be turned off so you can't expect Javascript to protect anything.
  9. Sorry, Javascript can't open Notepad or run any other executable. https://www.w3schools.com/jsref/met_win_open.asp
  10. So if you can't even log into the server to administer your website then you obviously need to contact the hosting support.
  11. What JustSomeGuy says is also true if you use element.addEventListener(). The function name is used without the argument parens.
  12. It seem like SEO is mostly voodoo. https://www.seroundtable.com/google-absolute-vs-relative-urls-26001.html
  13. Learn about relative paths... https://www.w3schools.com/htmL/html_filepaths.asp Also another common problem is that when testing on a Windows pc the paths and file names are not case-sensitive -- but then you transfer the file to a Linux server which is case-sensitive.
  14. File upload to the web root folder?
  15. If you're using Windows 10 you can install Linux and use Bash scripts. https://docs.microsoft.com/en-us/windows/wsl/install-win10
  16. As Ingolme says, you have the decryption code and obviously Javascript is the only reasonable language choice. The problem is choosing passwords and detecting success. Now, as an example, if you know that the successful decryption will result in a phrase that contains one of the English words; "the", "and", or "is" then an "appropriate test" you might use; test = toLowerCase(test); if(test.indexOf('the') != -1 || test.indexOf('and') != -1 || test.indexOf('is') != -1){ alert(test); } or this might be better... var t = toLowerCase(test); if(t.indexOf(' the ') != -1 || t.indexOf(' and ') != -1 || t.indexOf(' is ') != -1){ alert(test); }
  17. 1. You need to have some idea what was encrypted -- and an appropriate test that will detect that output. 2. You need a list of passwords such as Popular Passwords 2017 3. You need to write a script that will attempt each password in the list and test the result.
  18. I think this would be a good beginner's project for you.
  19. Sure, if the password that was used was weak and you have a dictionary of all probable passwords.
  20. The file "form-to-email.php" does not exist.
  21. We have no idea what is available in your country. You will have to search.
  22. W3Schools does not have an Android or a Java tutorial. Do you know Java? https://developer.android.com/guide/
  23. https://www.nudge.online/_utilities/php/matomo/index.php?module=API&action=index&method=Events.getCategory&url=www.grammarcaptive.com&idSite=1&period=year&date=today&segment=&expanded=&secondaryDimension=&format=json&token_auth=363130ebb19736863e42030f91269e40
  24. davej

    Python

    New? https://www.w3schools.com/python/default.asp
×
×
  • Create New...