Note that there are some explanatory texts on larger screens.

plurals
  1. POPassing password value through URL
    primarykey
    data
    text
    <p>OK I see a lot of people asking about passing other values, URLS, random stuff through a URL, but don't find anything about sending a password to a password field.</p> <p>Here is my situation:</p> <p>I have a ton of sites I use on a daily basis with my work and oh about 90% require logins. Obviously remembering 80 bajillion logins for each site is dumb, especially when there are more than one user name I use for each site. So to make life easier, I drew up a nifty JSP app that stores all of my logins in a DB table and creates a user interface for the specific page I want to visit. Each page has a button that sends a username, password into the id parameters of the html inputs.</p> <p>Problem:</p> <p>I can get the usernames and other info to show up just dandy, but when I try and send a password to a password field, it seems that nothing gets received by the page I'm trying to hit.</p> <p>Is there some ninja stuff I need to be doing here or is it just not easily possible?</p> <p>Basically this is what I do now:</p> <p><a href="http://addresshere/support?loginname=steveoooo&amp;loginpass=passwordhere" rel="nofollow noreferrer">http://addresshere/support?loginname=steveoooo&amp;loginpass=passwordhere</a></p> <p>and some of my html looks like this:</p> <pre><code>&lt;form name="userform" method="post" action="index.jsp" &gt; &lt;input type="hidden" name="submit_login" value="y"&gt; &lt;table width="100%"&gt; &lt;tr class="main"&gt; &lt;td width="100" nowrap&gt;Username:&lt;/td&gt; &lt;td&gt;&lt;input type="text" name="loginname" value="" size="30" maxlength="64"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr class="main"&gt; &lt;td&gt;Password: &lt;/font&gt;&lt;/td&gt; &lt;td&gt;&lt;input type="password" name="loginpass" value="" size="30" maxlength="64"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr class="main"&gt; &lt;td&gt;&lt;center&gt;&lt;input type="submit" name="submit" value="Login"&gt;&lt;/center&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/form&gt; </code></pre> <p>Any suggestions?</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload