ERROR 400: Invalid direct reference to form login pageparse http response header from wgetHTTP 400 (bad request) for logical error, not malformed request syntaxCreating Proxy cannot correctly tunnel through SSL after browser sends CONNECT request?Intermittent failure to deliver static content from tomcat400 BAD request HTTP error code meaning?Make wget retry original URL after 3XX RedirectinstaR http error 400, can't get access tokenInvestigating 400Bad Request Error returned by IBM HTTP serverCookies disappear after redirectHow to AWS Route Load Balancer from HTTP to HTTPS for TOMCAT Server

How can my story take place on Earth without referring to our existing cities and countries?

Sharing referee/AE report online to point out a grievous error in refereeing

How do I ensure my employees don't abuse my flexible work hours policy?

Will writing actual numbers instead of writing them with letters affect readership?

How can I tell what kind of genitals people have without gender?

What does grep -v "grep" mean and do?

Losing queen and then winning the game

Are all commands with an optional argument fragile?

Do the 26 richest billionaires own as much wealth as the poorest 3.8 billion people?

How Do I Know When I am in Private Mode?

Most elegant way to write a one-shot 'if'

What happens to a wizard's magic when they are swallowed by a tarrasque?

Why is Japan trying to have a better relationship with Iran?

What is "oversubscription" in Networking?

Security Patch SUPEE-11155 - Possible issues?

What's the safest way to inform a new user of their password on an invite-only website?

How do we separate rules of logic from non-logical constraints?

Is there any way to adjust the component values to get 5V output?

Can one use the present progressive or gerund like an adjective?

Is there reliable evidence that depleted uranium from the 1999 NATO bombing is causing cancer in Serbia?

Single level file directory

What are good ways to spray paint a QR code on a footpath?

Why won’t the ground take my seed?

What exactly did Ant-Man see that made him say that their plan worked?



ERROR 400: Invalid direct reference to form login page


parse http response header from wgetHTTP 400 (bad request) for logical error, not malformed request syntaxCreating Proxy cannot correctly tunnel through SSL after browser sends CONNECT request?Intermittent failure to deliver static content from tomcat400 BAD request HTTP error code meaning?Make wget retry original URL after 3XX RedirectinstaR http error 400, can't get access tokenInvestigating 400Bad Request Error returned by IBM HTTP serverCookies disappear after redirectHow to AWS Route Load Balancer from HTTP to HTTPS for TOMCAT Server






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I'm trying to write some checks for JBoss Application Servers that sit behind a load balancer. The current check logs in to the website with a test user, outputs the data which we then cross check for a particular string.



Anyway I essentially want to do the same thing but at a node level so I've been playing around with wget but continually get a 400 error.



I've attached the check that works when I go via the load balancer from a host that has internet access.



/usr/bin/wget --post-data 'username=<user>&password=<passwd>' --no-check-certificate --load-cookies $TMPDIR/cookies1.$$ --save-cookies $TMPDIR/cookies2.$$ --keep-session-cookies --header='Referer: https://www.example.com.uk/cs8/content/secure/my_homepage.jsp' --output-document $TMPDIR/doc2.$$ https://www.example.com.uk/cs8/content/secure/j_security_check
--2019-03-25 12:00:54-- https://www.example.com.uk/cs8/content/secure/j_security_check
Resolving www.example.com.uk... VIP1, VIP2
Connecting to www.example.com.uk|VIP1|:443... connected.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: https://www.example.com.uk/cs8/content/secure/my_homepage.jsp [following]
--2019-03-25 12:00:54-- https://www.example.com.uk/cs8/content/secure/my_homepage.jsp
Connecting to www.example.com.uk|VIP1|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 6049 (5.9K) [text/html]
Saving to: `/tmp/check_cs8/doc2.5965'


This is the code that fails when run directly on one of the nodes.



/usr/bin/wget --post-data 'username=<user>&password=<passwd>' --no-check-certificate --load-cookies $TMPDIR/cookies1.$$ --save-cookies $TMPDIR/cookies2.$$ --keep-session-cookies --header='Referer: http://$IP:$PORT/cs8/content/secure/my_homepage.jsp' --output-document $TMPDIR/doc2.$$ http://$IP:$PORT/cs8/content/secure/j_security_check
--2019-03-25 13:48:27-- http://IP:8080/cs8/content/secure/j_security_check
Connecting to IP:8080... connected.
HTTP request sent, awaiting response... 400 Invalid direct reference to form login page
2019-03-25 13:48:27 ERROR 400: Invalid direct reference to form login page.









share|improve this question






























    0















    I'm trying to write some checks for JBoss Application Servers that sit behind a load balancer. The current check logs in to the website with a test user, outputs the data which we then cross check for a particular string.



    Anyway I essentially want to do the same thing but at a node level so I've been playing around with wget but continually get a 400 error.



    I've attached the check that works when I go via the load balancer from a host that has internet access.



    /usr/bin/wget --post-data 'username=<user>&password=<passwd>' --no-check-certificate --load-cookies $TMPDIR/cookies1.$$ --save-cookies $TMPDIR/cookies2.$$ --keep-session-cookies --header='Referer: https://www.example.com.uk/cs8/content/secure/my_homepage.jsp' --output-document $TMPDIR/doc2.$$ https://www.example.com.uk/cs8/content/secure/j_security_check
    --2019-03-25 12:00:54-- https://www.example.com.uk/cs8/content/secure/j_security_check
    Resolving www.example.com.uk... VIP1, VIP2
    Connecting to www.example.com.uk|VIP1|:443... connected.
    HTTP request sent, awaiting response... 302 Moved Temporarily
    Location: https://www.example.com.uk/cs8/content/secure/my_homepage.jsp [following]
    --2019-03-25 12:00:54-- https://www.example.com.uk/cs8/content/secure/my_homepage.jsp
    Connecting to www.example.com.uk|VIP1|:443... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 6049 (5.9K) [text/html]
    Saving to: `/tmp/check_cs8/doc2.5965'


    This is the code that fails when run directly on one of the nodes.



    /usr/bin/wget --post-data 'username=<user>&password=<passwd>' --no-check-certificate --load-cookies $TMPDIR/cookies1.$$ --save-cookies $TMPDIR/cookies2.$$ --keep-session-cookies --header='Referer: http://$IP:$PORT/cs8/content/secure/my_homepage.jsp' --output-document $TMPDIR/doc2.$$ http://$IP:$PORT/cs8/content/secure/j_security_check
    --2019-03-25 13:48:27-- http://IP:8080/cs8/content/secure/j_security_check
    Connecting to IP:8080... connected.
    HTTP request sent, awaiting response... 400 Invalid direct reference to form login page
    2019-03-25 13:48:27 ERROR 400: Invalid direct reference to form login page.









    share|improve this question


























      0












      0








      0








      I'm trying to write some checks for JBoss Application Servers that sit behind a load balancer. The current check logs in to the website with a test user, outputs the data which we then cross check for a particular string.



      Anyway I essentially want to do the same thing but at a node level so I've been playing around with wget but continually get a 400 error.



      I've attached the check that works when I go via the load balancer from a host that has internet access.



      /usr/bin/wget --post-data 'username=<user>&password=<passwd>' --no-check-certificate --load-cookies $TMPDIR/cookies1.$$ --save-cookies $TMPDIR/cookies2.$$ --keep-session-cookies --header='Referer: https://www.example.com.uk/cs8/content/secure/my_homepage.jsp' --output-document $TMPDIR/doc2.$$ https://www.example.com.uk/cs8/content/secure/j_security_check
      --2019-03-25 12:00:54-- https://www.example.com.uk/cs8/content/secure/j_security_check
      Resolving www.example.com.uk... VIP1, VIP2
      Connecting to www.example.com.uk|VIP1|:443... connected.
      HTTP request sent, awaiting response... 302 Moved Temporarily
      Location: https://www.example.com.uk/cs8/content/secure/my_homepage.jsp [following]
      --2019-03-25 12:00:54-- https://www.example.com.uk/cs8/content/secure/my_homepage.jsp
      Connecting to www.example.com.uk|VIP1|:443... connected.
      HTTP request sent, awaiting response... 200 OK
      Length: 6049 (5.9K) [text/html]
      Saving to: `/tmp/check_cs8/doc2.5965'


      This is the code that fails when run directly on one of the nodes.



      /usr/bin/wget --post-data 'username=<user>&password=<passwd>' --no-check-certificate --load-cookies $TMPDIR/cookies1.$$ --save-cookies $TMPDIR/cookies2.$$ --keep-session-cookies --header='Referer: http://$IP:$PORT/cs8/content/secure/my_homepage.jsp' --output-document $TMPDIR/doc2.$$ http://$IP:$PORT/cs8/content/secure/j_security_check
      --2019-03-25 13:48:27-- http://IP:8080/cs8/content/secure/j_security_check
      Connecting to IP:8080... connected.
      HTTP request sent, awaiting response... 400 Invalid direct reference to form login page
      2019-03-25 13:48:27 ERROR 400: Invalid direct reference to form login page.









      share|improve this question
















      I'm trying to write some checks for JBoss Application Servers that sit behind a load balancer. The current check logs in to the website with a test user, outputs the data which we then cross check for a particular string.



      Anyway I essentially want to do the same thing but at a node level so I've been playing around with wget but continually get a 400 error.



      I've attached the check that works when I go via the load balancer from a host that has internet access.



      /usr/bin/wget --post-data 'username=<user>&password=<passwd>' --no-check-certificate --load-cookies $TMPDIR/cookies1.$$ --save-cookies $TMPDIR/cookies2.$$ --keep-session-cookies --header='Referer: https://www.example.com.uk/cs8/content/secure/my_homepage.jsp' --output-document $TMPDIR/doc2.$$ https://www.example.com.uk/cs8/content/secure/j_security_check
      --2019-03-25 12:00:54-- https://www.example.com.uk/cs8/content/secure/j_security_check
      Resolving www.example.com.uk... VIP1, VIP2
      Connecting to www.example.com.uk|VIP1|:443... connected.
      HTTP request sent, awaiting response... 302 Moved Temporarily
      Location: https://www.example.com.uk/cs8/content/secure/my_homepage.jsp [following]
      --2019-03-25 12:00:54-- https://www.example.com.uk/cs8/content/secure/my_homepage.jsp
      Connecting to www.example.com.uk|VIP1|:443... connected.
      HTTP request sent, awaiting response... 200 OK
      Length: 6049 (5.9K) [text/html]
      Saving to: `/tmp/check_cs8/doc2.5965'


      This is the code that fails when run directly on one of the nodes.



      /usr/bin/wget --post-data 'username=<user>&password=<passwd>' --no-check-certificate --load-cookies $TMPDIR/cookies1.$$ --save-cookies $TMPDIR/cookies2.$$ --keep-session-cookies --header='Referer: http://$IP:$PORT/cs8/content/secure/my_homepage.jsp' --output-document $TMPDIR/doc2.$$ http://$IP:$PORT/cs8/content/secure/j_security_check
      --2019-03-25 13:48:27-- http://IP:8080/cs8/content/secure/j_security_check
      Connecting to IP:8080... connected.
      HTTP request sent, awaiting response... 400 Invalid direct reference to form login page
      2019-03-25 13:48:27 ERROR 400: Invalid direct reference to form login page.






      http jboss http-status-code-400






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 26 at 8:41







      user11255255

















      asked Mar 25 at 14:00









      user11255255user11255255

      13 bronze badges




      13 bronze badges






















          0






          active

          oldest

          votes










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55339552%2ferror-400-invalid-direct-reference-to-form-login-page%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55339552%2ferror-400-invalid-direct-reference-to-form-login-page%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

          155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해