Questions tagged [usersession]
81 questions
0
votes
1 answer
How to enumerate all logged in user sessions from a launch daemon on macOS?
From an interactive user session for a logged in user I can use SessionGetInfo function to obtain the calling process' session ID:
SecuritySessionId sessID;
SessionAttributeBits flags;
if(SessionGetInfo(callerSecuritySession,
…

c00000fd
- 20,994
- 29
- 177
- 400
0
votes
1 answer
React MSAL Library msal-react : Issue in persisting the login session in different user-policies B2C application
I am using msal-react in my single page B2C application to sign in. I used the loginRedirect() function to login.
const { instance } = useMsal();
let {idToken} = await instance.loginRedirect();
This is allowing me to login successfully.
After login…

Sundeep
- 375
- 2
- 4
- 16
0
votes
1 answer
Argument Error on Heroku
I'm using Rails 3.1 with Authlogic 3.0.3. I have my application deployed on Heroku. Locally, everything works perfectly fine, however, when I deploy to Heroku I get the following error:
ArgumentError (wrong number of arguments (3 for 2)):
…

MunkiPhD
- 3,636
- 1
- 29
- 51
0
votes
1 answer
Is it possible to end the okta session from Azure?
Okta will always gives the previous guest user session when I try to login with another user. Is it possible to end the okta session from azure?
In my iOS application, I introduced Okta as an External Identity by using SAML. All of this is…

Aswathi
- 3
- 3
0
votes
0 answers
Open process as another user
I'm writing a C# program that runs on a remote windows embedded device. it is running in admin mode.
From this program I try to open an exe, but by default, this exe is opened in the same admin session.
How can I open it as another user?
I already…

Avironman
- 1
- 1
0
votes
1 answer
Flutter Application won't install on Xiomi, OnePlus, Vivo and user session is not maintained
I have recently developed a Flutter application which works totally fine on all iPhone models and tested on Samsung and different android devices. However it gives either one of the following issue on some phones such as OnePlus, Xiomi Redmi…
0
votes
1 answer
Take screenshots from other sessions in win32
I want to take screenshots from other logon sessions. Taking screenshot from the session that has ran the executable is okay but how can I do this with other sessions ?
Note: My executable is going to be executed as administrator.

zbx0310
- 64
- 8
0
votes
1 answer
How do I make cookies value i.e. ai_user & ai_session dynamic in JMeter as it appears different & dynamic in browser each time user hits home request?
Each time I execute home page of ecommerce website, some cookies appear in request header some of them have unique values each time we hit Home request which is ai_user & ai_session. I want to know how do I get those unique values in JMeter for each…
0
votes
1 answer
How do I set cookie values dynamically in "HTTP CookiesManager" i.e. ai_user & ai_session for incoming user in ecommerce site in JMeter?
I want to set user defined cookies value i.e. ai_user & ai_session dynamically for each user in "HTTP CookiesManager" in JMeter, as it happens in browser ecommerce website. It's hard code for now but I want it's value dynamic & unique for each…
0
votes
1 answer
How do I pass cookies ai-user & ai_session as a dynamic variable to UserSessionid & AppSessionid in JMeter?
I want to know how to make UserSessionid & AppSessionid values dynamic. Kindy give me solution.
As I want to pass variable as a value to UserSession & AppSession in Http sampler request header, from which response I get those values? So I can get…
0
votes
3 answers
How to get all remote logged on users with Logon Time
I wanted a simple way to get all (remote) logged on (and disconnected) users on all servers from my list.
I use the QUERY SESSION command for this purpose (as I found it to be the quickest and most reliable one). The command is called QWINSTA in my…

nikon D3400
- 61
- 2
- 10
0
votes
1 answer
End session of inactive user using Powershell
I have created a powershell script to get Inactive users from AD with high cpu usage, but now I want to end the session of those Inactive users without disabling the account.
I'm unable to get session Id of inactive users
Can anyone help me to end…

Yukta Vichare
- 1
- 1
0
votes
0 answers
How to check if django admin is logged in or not?
I have a django project where I have 2 different login page.
is in the landing page. ex: https://website.com/
is the django admin login. ex: https://website.com/admin/
For both the login, I am using the same postgres user table.
The requirement…

Prajna
- 578
- 4
- 8
- 23
0
votes
1 answer
TYPO3 10.4 session variables
how do I implement a session variable like
$GLOBALS['TSFE']->fe_user->setKey('ses','country',$country);
$GLOBALS['TSFE']->storeSessionData();
...
$x = $GLOBALS['TSFE']->fe_user->getKey('ses','country');
in TYPO3 10.4?

Largo
- 1
- 3
0
votes
2 answers
Different views for different users in reactJS
I am having a problem in ReactJS. I want to create a text editor ( with ReactQuill). So, I want different accounts for each user, such that, if one person creates a note and edits it in his account, the other person should not see this.for example…

Japroz Saini
- 1
- 3