click for FREE hookups
Rubrankings.com
rubmaps
Ava Escorts
click for FREE hookups
Sex Vacation
This forum thread is moderated by Admin
  1. #1040
    Quote Originally Posted by HoHopper  [View Original Post]
    Got this tip from a fellow USAer, I'm a programmer, and I spend a good portion of my time doing web development. I've noted that SA has been rewriting portions of their site from a traditional "click link, wait for server return the new page" style to a "single-page application" approach. Turns out that due to some rather silly programming choices on their part, it's actually possible to view the text content of messages even if you don't have premium time enabled.

    It involves opening up your browser's "development tools" window so you can inspect the contents of the page and the data being requested, and should work in either Chrome or Firefox.

    Log in to SA and go to your inbox. Right-click anywhere on the page and choose "Inspect Element". The browser's dev tools should either pop up as a separate window, or as part of the main window. Click on the "network" tab in the dev tools. Then, back in the SA inbox screen, click on a conversation.

    If you go back to the "network" tab, you should see a list of all the data requests the SA page asked for from the server. One of them should look like "/ inbox? Page=1&limit=25". Click on that one. It'll show a bunch of technical details of some of the message headers.

    Now, look for a tab called "Response". If you click on that, you should see a tree with sections like "status", "message", "conversation", and "metadata". Expand "conversation" "messages" "data". You should see some numbered entries, 0 and up. Those represent each of the messages in the conversation, from both of you. (Side note: the "metadata" object has a whole bunch of info that they know about your own account. Some of it is info you entered yourself, like profile info. There's also things like "payments_total", which appears to be how much you've actually ever paid SA, unread message count, whether you're in the EU, and even fields labeled "has_under_age_punishment" and "has_unacknowledged_punishment". Very interesting.).

    Each message entry has a field called "body", which is the text that's shown in your inbox. If you've got premium active, it's the actual message text. If not, it's "Upgrade to read".

    Here's where they did something silly. They send back the text that should be shown, but *they also send back the original text too*. So, even if the "body" field says "Upgrade to read", the "original_body" field shows the actual no-kidding message that was sent. You can inspect each of the messages that was received, and effectively read the conversation.

    It's not a substitute for reading messages in the inbox as usual, but it might be helpful for anyone who gets a message when they don't have premium active and wants to peek at it without having to immediately shell out the cash to read it.

    As a programmer, I can tell that there's actually a _ton_ of useful information being returned whenever you view a profile page or inbox page. It would be possible for someone to write a browser extension that either extracted some of that info from a page, or re-requested that data from the server, and did something useful with it (up to and including modifying an inbox to show all the messages without needing premium enabled). Sadly, I don't have time to work on anything like that myself. I've got a lot of other things on my plate.

    Hope that helps!
    Holy shit man, that's brilliant! Cheers!

  2. #1039
    Banned Member


    Posts: 188

    Re: Alma L4321

    Great report with a link & a name. Thank you. I wish all the info on here was as easy to follow & reporting was as good as yours.

    Be safe & Happy New Year.

  3. #1038
    Banned Member


    Posts: 188
    Quote Originally Posted by HoHopper  [View Original Post]
    Got this tip from a fellow USAer, I'm a programmer, and I spend a good portion of my time doing web development. I've noted that SA has been rewriting portions of their site from a traditional "click link, wait for server return the new page" style to a "single-page application" approach. Turns out that due to some rather silly programming choices on their part, it's actually possible to view the text content of messages even if you don't have premium time enabled.
    Just wanted to say THANK YOU for passing along this useful info & taking the time to explain it.

  4. #1037

    SA code

    Quote Originally Posted by HoHopper  [View Original Post]
    Got this tip from a fellow USAer, I'm a programmer, and I spend a good portion of my time doing web development. I've noted that SA has been rewriting portions of their site from a traditional "click link, wait for server return the new page" style to a "single-page application" approach. Turns out that due to some rather silly programming choices on their part, it's actually possible to view the text content of messages even if you don't have premium time enabled.

    It involves opening up your browser's "development tools" window so you can inspect the contents of the page and the data being requested, and should work in either Chrome or Firefox.

    Log in to SA and go to your inbox. Right-click anywhere on the page and choose "Inspect Element". The browser's dev tools should either pop up as a separate window, or as part of the main window. Click on the "network" tab in the dev tools. Then, back in the SA inbox screen, click on a conversation.

    If you go back to the "network" tab, you should see a list of all the data requests the SA page asked for from the server. One of them should look like "/ inbox? Page=1&limit=25". Click on that one. It'll show a bunch of technical details of some of the message headers.

    Now, look for a tab called "Response". If you click on that, you should see a tree with sections like "status", "message", "conversation", and "metadata". Expand "conversation" "messages" "data". You should see some numbered entries, 0 and up. Those represent each of the messages in the conversation, from both of you. (Side note: the "metadata" object has a whole bunch of info that they know about your own account. Some of it is info you entered yourself, like profile info. There's also things like "payments_total", which appears to be how much you've actually ever paid SA, unread message count, whether you're in the EU, and even fields labeled "has_under_age_punishment" and "has_unacknowledged_punishment". Very interesting.).

    Each message entry has a field called "body", which is the text that's shown in your inbox. If you've got premium active, it's the actual message text. If not, it's "Upgrade to read".

    Here's where they did something silly. They send back the text that should be shown, but *they also send back the original text too*. So, even if the "body" field says "Upgrade to read", the "original_body" field shows the actual no-kidding message that was sent. You can inspect each of the messages that was received, and effectively read the conversation.

    It's not a substitute for reading messages in the inbox as usual, but it might be helpful for anyone who gets a message when they don't have premium active and wants to peek at it without having to immediately shell out the cash to read it.

    As a programmer, I can tell that there's actually a _ton_ of useful information being returned whenever you view a profile page or inbox page. It would be possible for someone to write a browser extension that either extracted some of that info from a page, or re-requested that data from the server, and did something useful with it (up to and including modifying an inbox to show all the messages without needing premium enabled). Sadly, I don't have time to work on anything like that myself. I've got a lot of other things on my plate.

    Hope that helps!
    Wow that actually helps, you are awesome!!

  5. #1036

    Preview Seeking messages without premium

    Got this tip from a fellow USAer, I'm a programmer, and I spend a good portion of my time doing web development. I've noted that SA has been rewriting portions of their site from a traditional "click link, wait for server return the new page" style to a "single-page application" approach. Turns out that due to some rather silly programming choices on their part, it's actually possible to view the text content of messages even if you don't have premium time enabled.

    It involves opening up your browser's "development tools" window so you can inspect the contents of the page and the data being requested, and should work in either Chrome or Firefox.

    Log in to SA and go to your inbox. Right-click anywhere on the page and choose "Inspect Element". The browser's dev tools should either pop up as a separate window, or as part of the main window. Click on the "network" tab in the dev tools. Then, back in the SA inbox screen, click on a conversation.

    If you go back to the "network" tab, you should see a list of all the data requests the SA page asked for from the server. One of them should look like "/ inbox? Page=1&limit=25". Click on that one. It'll show a bunch of technical details of some of the message headers.

    Now, look for a tab called "Response". If you click on that, you should see a tree with sections like "status", "message", "conversation", and "metadata". Expand "conversation" "messages" "data". You should see some numbered entries, 0 and up. Those represent each of the messages in the conversation, from both of you. (Side note: the "metadata" object has a whole bunch of info that they know about your own account. Some of it is info you entered yourself, like profile info. There's also things like "payments_total", which appears to be how much you've actually ever paid SA, unread message count, whether you're in the EU, and even fields labeled "has_under_age_punishment" and "has_unacknowledged_punishment". Very interesting.).

    Each message entry has a field called "body", which is the text that's shown in your inbox. If you've got premium active, it's the actual message text. If not, it's "Upgrade to read".

    Here's where they did something silly. They send back the text that should be shown, but *they also send back the original text too*. So, even if the "body" field says "Upgrade to read", the "original_body" field shows the actual no-kidding message that was sent. You can inspect each of the messages that was received, and effectively read the conversation.

    It's not a substitute for reading messages in the inbox as usual, but it might be helpful for anyone who gets a message when they don't have premium active and wants to peek at it without having to immediately shell out the cash to read it.

    As a programmer, I can tell that there's actually a _ton_ of useful information being returned whenever you view a profile page or inbox page. It would be possible for someone to write a browser extension that either extracted some of that info from a page, or re-requested that data from the server, and did something useful with it (up to and including modifying an inbox to show all the messages without needing premium enabled). Sadly, I don't have time to work on anything like that myself. I've got a lot of other things on my plate.

    Hope that helps!

  6. #1035

    Alma

    Quote Originally Posted by VincentSpies  [View Original Post]
    https://www.seeking.com/member/a94f0...9-b2d2b653766a

    The profile says she made her account in May 2015 but I couldn't find anything on her. She was pretty easily verifiable through social media, where I discovered she will likely see all races professionally. If you know what I mean. She's some kindof wannabe instagram model. She's crazy hot but personality was a little quiet. She does outcall only so I drove close to her area and met her in a hotel that I had to pay for. She came out of the gate offering $$ but I quickly shut that down. Damage was $$$ but with her looks it was hard to resist. After we dicussed specifics over text and she agreed to BBFS with CIP then I jumped on it. I was barely around for 45 minutes she had me so excited. DATY, BBBJ, and left a but nut inside her. Enjoy this one, my NC neighbors.

    I don't know how long she will be in the hobby so I posted a few pics. She seems like a young (24 I think) naive girl with just a decent slutty streak so who knows. I suggest using this cum deposit while the gettin' is good, though.
    Wow you were in luck, would be interested in her digits if you can pm me. $$$ is totally worth to me. Also which area in clt pm me.

  7. #1034

    Alma L4321

    https://www.seeking.com/member/a94f0...9-b2d2b653766a

    The profile says she made her account in May 2015 but I couldn't find anything on her. She was pretty easily verifiable through social media, where I discovered she will likely see all races professionally. If you know what I mean. She's some kindof wannabe instagram model. She's crazy hot but personality was a little quiet. She does outcall only so I drove close to her area and met her in a hotel that I had to pay for. She came out of the gate offering $$ but I quickly shut that down. Damage was $$$ but with her looks it was hard to resist. After we dicussed specifics over text and she agreed to BBFS with CIP then I jumped on it. I was barely around for 45 minutes she had me so excited. DATY, BBBJ, and left a but nut inside her. Enjoy this one, my NC neighbors.

    I don't know how long she will be in the hobby so I posted a few pics. She seems like a young (24 I think) naive girl with just a decent slutty streak so who knows. I suggest using this cum deposit while the gettin' is good, though.
    Attached Thumbnails Attached Thumbnails 0fe9a92c-b0a6-43c1-86e5-9d2ce98a6c53.jpg‎   39B9BAFD13DA6D08003DFA75181D6FE2.jpg‎   abbe2.jpg‎   abbey.jpg‎   abbe3.jpg‎  

    abbe4.jpg‎   abbe5.jpg‎  

  8. #1033
    Banned Member


    Posts: 100
    Quote Originally Posted by JethRotheRed  [View Original Post]
    Have you been checked for little swimmers lately? I know a guy that got mightily surprised when his wife got pregnant 10 years after his vasectomy. No shenanigans, his vasectomy reversed itself.
    Yes, I've had the "I'm pregnant" thing happen before, so every couple years I get tested for escapees.

    Quote Originally Posted by LuvBoobies  [View Original Post]
    How far along is the fine young lady. Like many I love prego women. Seems like she needs more donators now not less. .
    I told her that I loved pregnant girls (the more pregnant the better), and that we could work something out for her to make some coin, but she never replied so I am assuming it was just a money play.

  9. #1032

    Anyone have any experience with this one?


  10. #1031

    Taytay25 and StevieNatasha.

    Quote Originally Posted by ElAzteca1992  [View Original Post]
    Hey everyone. I was wondering if anyone had any Intel on either of these two ladies on SA. I am thinking of setting something up, but I would love some feedback. Anything is appreciated.

    -Aztec.

    https://www.seeking.com/member/52391...2-3306fa79e33a

    https://www.seeking.com/member/1ef53...3-a727cc22cd19
    I have contacted both of them and both were asking for 600 total for each meeting. That is for the 2 girls at a time which seemed like the only way they each would do anything. I never met or saw other pictures of them, the price was too high for what I would want.

  11. #1030

    Taytay25 and StevieNatasha.

    Hey everyone. I was wondering if anyone had any Intel on either of these two ladies on SA. I am thinking of setting something up, but I would love some feedback. Anything is appreciated.

    -Aztec.

    https://www.seeking.com/member/52391...2-3306fa79e33a

    https://www.seeking.com/member/1ef53...3-a727cc22cd19

  12. #1029
    Quote Originally Posted by Jax12  [View Original Post]
    So I had a 19 year old SB that I'd been seeing for a while back in Sept-Nov message me today that she's pregnant, and wants to know what I am "going to do about it". Yes, lots of BBFS with CIP almost every time (unless it was CIB). I called her and let her rant, and then explained that I was going to do nothing, since I had a vasectomy over 20 years ago. I don't know if she's really knocked up, or just looking for a before Christmas handout, but this just supports my assertion you never give an SB anything more than an alias.
    Lucky you. Guess some other SD will be getting some exciting news for the holidays.

    I did have a chick try to shake me down for money for morning after pill. I didn't give and nothing ever came of it.

  13. #1028
    Quote Originally Posted by Jax12  [View Original Post]
    So I had a 19 year old SB that I'd been seeing for a while back in Sept-Nov message me today that she's pregnant, and wants to know what I am "going to do about it". Yes, lots of BBFS with CIP almost every time (unless it was CIB). I called her and let her rant, and then explained that I was going to do nothing, since I had a vasectomy over 20 years ago. I don't know if she's really knocked up, or just looking for a before Christmas handout, but this just supports my assertion you never give an SB anything more than an alias.
    How far along is the fine young lady. Like many I love prego women. Seems like she needs more donators now not less. .

  14. #1027

    Check it

    Quote Originally Posted by Jax12  [View Original Post]
    So I had a 19 year old SB that I'd been seeing for a while back in Sept-Nov message me today that she's pregnant, and wants to know what I am "going to do about it". Yes, lots of BBFS with CIP almost every time (unless it was CIB). I called her and let her rant, and then explained that I was going to do nothing, since I had a vasectomy over 20 years ago. I don't know if she's really knocked up, or just looking for a before Christmas handout, but this just supports my assertion you never give an SB anything more than an alias.
    Have you been checked for little swimmers lately? I know a guy that got mightily surprised when his wife got pregnant 10 years after his vasectomy. No shenanigans, his vasectomy reversed itself.

  15. #1026

    Molly WYP

    Quote Originally Posted by HoHopper  [View Original Post]
    Add Missing Molly to the do not waste your credits on, she want to meet for $100 and see what happens, which seems like is common this site. https://members.whatsyourprice.com/p...a999L5LX4YE23b.
    Thank you.

Posting Limitations

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
click for FREE hookups
Best Escorts
LoveHUB Escorts Directory





Page copy protected against web site content infringement by Copyscape