Jump to content

Hidding IE screen issue


Recommended Posts

TSE Pro + Process Hacker on bank account trying to hide logon win. what are you trying to do?

TCP server and client - Learning about TCP servers and clients connection
Au3 oIrrlicht - Irrlicht project
Au3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related)



460px-Thief-4-temp-banner.jpg
There are those that believe that the perfect heist lies in the preparation.
Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.

 
Link to comment
Share on other sites

We are automating tasks for end users and nee the ability to set this up so the users cant

see the screens for the logon as they try to chnage things and it wont work if the exact logon credentials

are not passwed to the application, the abblication is passing the details for the logon , its just the user intgeraction

we need to avoid until the logon is complete

Link to comment
Share on other sites

you mean you need autoit to pass logon credentials to that win while its hidden untill he (the user) dont tupe in correct data and the hidden wins after that popup?

TCP server and client - Learning about TCP servers and clients connection
Au3 oIrrlicht - Irrlicht project
Au3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related)



460px-Thief-4-temp-banner.jpg
There are those that believe that the perfect heist lies in the preparation.
Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.

 
Link to comment
Share on other sites

if you embed the IE into a gui then show/hide the gui when needed

$ie = _IECreateEmbedded()
$ie_gui = GUICreate("Your GUI",910,713,-1,-1,$WS_OVERLAPPEDWINDOW + $WS_VISIBLE + $WS_CLIPSIBLINGS + $WS_CLIPCHILDREN);Adjust size as needed
$GUIActiveX = GUICtrlCreateObj($ie,1,14,909,699)
GUISetState(@SW_SHOW or @SW_HIDE)
_IENavigate ($ie,website_url)
Edited by kaotkbliss

010101000110100001101001011100110010000001101001011100110010000

001101101011110010010000001110011011010010110011100100001

My Android cat and mouse game
https://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek

We're gonna need another Timmy!

Link to comment
Share on other sites

What you may want to do seeing how you work for BofA is use active directory to set the access then the users will not need to login.

Second I would cut out items on your screenshot that are not needed. You are asking for a security issue with your information security people if they see you doing this. Just by looking at your screenshot I was able to gather several pieces of information about your internal network environment that a hacker would like to know.

Link to comment
Share on other sites

The GUI won't control thr win32 password prompt. Also consider covering everything with a splash screen until you are ready to reveal.

Dale

Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl

MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model

Automate input type=file (Related)

Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded  Better Better?

IE.au3 issues with Vista - Workarounds

SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y

Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead?

Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble

Link to comment
Share on other sites

The GUI won't control thr win32 password prompt. Also consider covering everything with a splash screen until you are ready to reveal.

Dale

From what I gathered, he wanted to hide the "Navigation Cancelled" window and leave the login visible until after they logged in and the webpage was refreshed.

010101000110100001101001011100110010000001101001011100110010000

001101101011110010010000001110011011010010110011100100001

My Android cat and mouse game
https://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek

We're gonna need another Timmy!

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...