similar to: Changing the session id?

Displaying 20 results from an estimated 100000 matches similar to: "Changing the session id?"

2005 Mar 05
4
''Session id'' hacking?
> Because you mentioned "cookie-hacking": it is very easy to > take over a rails-session if you know the value of the > session-cookie. It is not possible to prevent that easily, > you can just make it harder by encrypting the whole session > (right from the beginning when the user enters the site, > and the cookie is created) by using https. https will encrypted
2016 Apr 05
2
Session ID separator change
LMTP is a but troublesome in that a single LMTP session can do multiple RCPT TOs, so the same session will end up delivering mails to multiple different users. This is causing trouble with stats process, because each delivery is using the same session ID for multiple different users, which causes errors about session ID duplication in stats process. So we'll need to make the session IDs
2011 May 21
1
OpenVAS Vulnerability
Hi, Please advice me about the below reported vulnerability. High OpenSSH X Connections Session Hijacking Vulnerability Risk: High Application: ssh Port: 22 Protocol: tcp ScriptID: 100584 Overview: OpenSSH is prone to a vulnerability that allows attackers to hijack forwarded X connections. Successfully exploiting this issue may allow an attacker run arbitrary shell commands with the privileges
2013 Jan 29
2
unicorn 4.6.0pre1 - hijacking support!
Installing from RubyGems.org: gem install --pre unicorn >From db919d18e01f6b2339915cbd057fba9dc040988b Mon Sep 17 00:00:00 2001 From: Eric Wong <normalperson at yhbt.net> Date: Tue, 29 Jan 2013 21:02:55 +0000 Subject: [PATCH] unicorn 4.6.0pre1 - hijacking support This pre-release adds hijacking support for Rack 1.5 users. See Rack documentation for more information about hijacking.
2006 Mar 07
6
fcgi dispatcher crashing
I''m trying to set deploy an app on apache2 with the fcgid module, but can''t seem to get anywhere. Things work fine with cgi, but when i switch to fcgi, i''m stuck with a ''503: Service Temporarily Unavailable''. There''s no error being logged anywhere, afaik. Trying to run dispatch.fcgi from the shell doesn''t work either. It bombs out,
2006 Mar 21
2
Validation to make sure associations don''t change?
I have a main form representing the model, let''s call that ''Order'', and a partial displaying its'' OrderLines. I use the bulk update methods to initialize model objects directly from form data, leaving validation of business logic to the model. As AR likes to write stuff before i do an explicit save, I wrap the whole update in a manual transaction. This works
2006 Feb 06
0
how can I retrieve a session based on the session-id
I am trying to mix Flash and RoR (for fileupload without pagerefresh) Unfortunately the requests originating from the flashplayer do not have the right sessionid. So I tried to hackaround with reading the _session_id form the cookie and sending it together with the fileupload POST from the flashplayer to the webserver. But how can i retrieve the session based on the session_id at my controller
2006 Nov 14
0
where does rails pull the session id from the cookie and connect the request with the session?
i was hoping someone could point me to the place where rails is using the cookie to match the request to the session. i see some session logic in cgi/session, but i can''t seem to find where it actually uses the cookie. fyi, i''m asking because i''m having an issue where i set the user during login, but the redirect following the login is using (or creating) a different
2006 Apr 28
3
store user id in session or find user id
Hi Im uisng the lgoin generatior that as far as I can tell stores the username in session. I have another table that i need to store the id of the user who creates an entry. (the logged in user) Is it possible to store return the id and store it in session once the user is created. then do somthing like @project.user_id = session[:user].id; or can I perform a search in the product table
2019 Mar 14
2
replication fails
On Thu, 2019-03-14 at 07:38 +0000, Rowland Penny via samba wrote: > On Wed, 13 Mar 2019 23:59:29 +0000 > Sérgio Basto via samba <samba at lists.samba.org> wrote: > > > On Wed, 2019-03-13 at 11:22 +0100, L.P.H. van Belle via samba > > wrote: > > > Hi Stefan, > > > > > > Debian 8 ? 9? > > > DC's samba version ? > > >
2010 Apr 19
0
[LLVMdev] FYI: Changing RunSafely.sh to only track user time
Daniel Dunbar wrote: > I am going to change the LLVM test-suite RunSafely.sh to only track > 'user' time, instead of reporting 'user' + 'sys' time as it currently > does. This will probably cause a spike in nightly test numbers, > although hopefully it will be limited to the smaller tests. > > The eventual goal is to report all numbers (independently), so
2006 Apr 21
3
Called id for nil, which would mistakenly be 4 -- if you really wanted the id of nil, use object_id
Hi I am a newbie to Ruby on Rails, but experienced in programming. I am trying out Rolling with Ruby on Rails article by Curt Hibbs on onlamp.com. I have encountered following error: Called id for nil, which would mistakenly be 4 -- if you really wanted the id of nil, use object_id I searched the archives of the list and found that similar question was left unanswered. I do understand from
2014 Nov 14
6
[Bug 10936] New: Rsync path hijacking attack vulnerability
https://bugzilla.samba.org/show_bug.cgi?id=10936 Bug ID: 10936 Summary: Rsync path hijacking attack vulnerability Product: rsync Version: 3.1.1 Hardware: All OS: All Status: NEW Severity: critical Priority: P5 Component: core Assignee: wayned at samba.org
2006 Oct 16
0
user engine session id re-generating on post
I get a redirect from user_engine when using curl -i -X POST -d "<xml_data></xml_data>" http://<webpage>?_session_id=ABC If I use curl http://<webpage>?_session_id=ABC the GET works fine.If it was a routing issue, I would expect the GET not to work.I also removed the -i, but no difference. I''m using if request.post? --- end if request.get? --- end
2006 Mar 20
0
unchanging session id
hello, I have a serious problem that I cannot identify the reason. I am logging every page access to my site to a table in my database to track some data, alonside with session, user and client data. I am seeing that same session id is given to numerous users even if their host, user-agent access times etc. are completely different. I am using session.session_id to track this data. and this
2006 Jun 29
0
Assigning user''s session ID to a sub-sub-group
Hi. I''m using LoginEngine to manage session info. On this site, I''d like users to be able to create groups, and then allow other users to sign up. The approach I''m taking is putting a "join" link on the "show" page for a group, and then adding the user as a member in the Group controller. There is a sub-table for groups called "members"
2006 Jun 30
0
Assigning user''s session ID to a sub-table
Hi. I''m using LoginEngine to manage session info. On this site, I''d like users to be able to create groups, and then allow other users to sign up. The approach I''m taking is putting a "join" link on the "show" page for a group, and then adding the user as a member in the Group controller. There is a sub-table for groups called "members"
2005 Sep 09
0
ActiveRecordStore session.id
Hi, I am using ActiveRecordStore for my sessions. I have another model called PageView that stores a record each time a page is viewed (page_id, session_id). In order to implement this, however, I need to be able to access the session''s primary ''id'' value, the integer, not the long encoded ''session_key''. My problem is that I can''t access
2006 May 26
4
shouldn''t this work? - session[:array_of_objects].delete_if {|x| x.id == params[:id]}
I am saving an array of active record objects (college courses) in the session as session[:course_list]. This is the cart for a registration controller. If a student chooses to delete the course from the list I get the :id as params[:id]. However if I do session[:course_list].delete_if {|x| x.id ==params[:id]} does not work. session[:course_list].delete_at(idx) works. Ocourse to do this I have
2006 Mar 02
1
test to correct hijacking
I am sorry for hijacking msgs. I didn't realize I was doing that for sure. I hope that this msg appears as a new msg and NOT any hijacked msg. please reply either way k so i can correct it. thx, John Rose