Author Topic: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!  (Read 103145 times)

Re: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!
« Reply #120 on: August 11, 2021, 04:58:54 PM »
Another Super Mom



I believe I have seen this production of Our Town.

Re: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!
« Reply #121 on: August 11, 2021, 05:23:18 PM »
Uh oh they lost Bannon.  He was just on stage with them yesterday  :-\

'This is a mistake': Steve Bannon slams Mike Lindell's 'cyber symposium' for failing to 'bring the receipts'

Quote
Conservative broadcaster Steve Bannon criticized MyPillow CEO Mike Lindell on Wednesday for failing to prove the 2020 election was stolen from former President Donald Trump.

As Lindell was kicking off the second day of his "cyber symposium," Bannon said that the MyPillow CEO had not provided his followers with "receipts" proving the election was fraudulent.

"Yesterday was kind of a good way to set the stage, a lot of interesting analysis," Bannon told Real America's Voice co-host Raheem Kassam. "But we understand people want to see what's going on."

https://www.rawstory.com/steve-bannon-mike-lindell/

Quote
"You've laid a theory of the case out here that's very powerful, but in laying that case out, you've got to bring the receipts," he added.

Re: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!
« Reply #122 on: August 11, 2021, 05:41:34 PM »
Oh good grief the idea that something like a state election database is not backed up and stored nightly, and probably incrementally throughout the day, is preposterous.  This is trying to panic chuckleheads with a lot of vague scary talk.

LOL bless me, some accounting guy actually called him on it, he hemmed and hawed, every state is different etc ok bowtie man is a scammer.

Re: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!
« Reply #123 on: August 11, 2021, 05:46:18 PM »
Oh good grief the idea that something like a state election database is not backed up and stored nightly, and probably incrementally throughout the day, is preposterous.  This is trying to panic chuckleheads with a lot of vague scary talk.

LOL bless me, some accounting guy actually called him on it, he hemmed and hawed, every state is different etc ok bowtie man is a scammer.

Then they delved into SOAP:


Peanut Gallery dude busting balls on the missing log files. If it was re-imaged the log files are gone.

Re: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!
« Reply #124 on: August 11, 2021, 06:08:10 PM »
Then they delved into SOAP:


Peanut Gallery dude busting balls on the missing log files. If it was re-imaged the log files are gone.

Did you get anything from the SOAP stuff?  I don't know about that.

Re: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!
« Reply #125 on: August 11, 2021, 06:25:33 PM »
Did you get anything from the SOAP stuff?  I don't know about that.

It's cumbersome, nasty shit used to move data around between apps on different systems. It uses a format called XML which makes your head hurt to look at.

https://www.w3schools.com/xml/xml_soap.asp

They were just looking for files, logs, etc that might show what was being sent in or out. Would look kind of like this:
Code: [Select]
POST /Quotation HTTP/1.0
Host: www.xyz.org
Content-Type: text/xml; charset = utf-8
Content-Length: nnn

<?xml version = "1.0"?>
<SOAP-ENV:Envelope
   xmlns:SOAP-ENV = "http://www.w3.org/2001/12/soap-envelope"
   SOAP-ENV:encodingStyle = "http://www.w3.org/2001/12/soap-encoding">

   <SOAP-ENV:Body xmlns:m = "http://www.xyz.org/quotations">
      <m:GetQuotation>
         <m:QuotationsName>MiscroSoft</m:QuotationsName>
      </m:GetQuotation>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Re: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!
« Reply #126 on: August 11, 2021, 06:27:17 PM »
LOL these guys.  Maybe next they will find  changevotestobiden.sql

Re: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!
« Reply #127 on: August 11, 2021, 06:28:14 PM »
It's cumbersome, nasty shit used to move data around between apps on different systems. It uses a format called XML which makes your head hurt to look at.

https://www.w3schools.com/xml/xml_soap.asp

They were just looking for files, logs, etc that might show what was being sent in or out. Would look kind of like this:
Code: [Select]
POST /Quotation HTTP/1.0
Host: www.xyz.org
Content-Type: text/xml; charset = utf-8
Content-Length: nnn

<?xml version = "1.0"?>
<SOAP-ENV:Envelope
   xmlns:SOAP-ENV = "http://www.w3.org/2001/12/soap-envelope"
   SOAP-ENV:encodingStyle = "http://www.w3.org/2001/12/soap-encoding">

   <SOAP-ENV:Body xmlns:m = "http://www.xyz.org/quotations">
      <m:GetQuotation>
         <m:QuotationsName>MiscroSoft</m:QuotationsName>
      </m:GetQuotation>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Oh ok thanks, XML I get.

Re: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!
« Reply #128 on: August 11, 2021, 06:38:18 PM »
Oh ok thanks, XML I get.
JSON is easier to read:

Code: [Select]
HTTP/1.1 200 OK
Content-Type: application/vnd.api+json

{
  "data": [{
    "type": "articles",
    "id": "1",
    "attributes": {
      "title": "JSON:API paints my bikeshed!",
      "body": "The shortest article. Ever.",
      "created": "2015-05-22T14:56:29.000Z",
      "updated": "2015-05-22T14:56:28.000Z"
    },
    "relationships": {
      "author": {
        "data": {"id": "42", "type": "people"}
      }
    }
  }],
  "included": [
    {
      "type": "people",
      "id": "42",
      "attributes": {
        "name": "John",
        "age": 80,
        "gender": "male"
      }
    }
  ]
}

Re: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!
« Reply #129 on: August 11, 2021, 06:47:39 PM »
OK I am calling it, the big announcement tomorrow is Lindell launching MyVote as a rival to Dominion.  Makes perfect sense, there are lot of rural counties that buy into this stuff who don't like Dominion now, $$$!  Especially if the grassroots demands it as a fix, keep CHYNA at bay, commies BTFO!

Actually I don't mind it; elections should be decentralized on principle.  Hell I'd be on board with bowtie man's Amish voting he keeps talking about.  But let's not kid ourselves about what is going on here.

These guys are software salesmen, you invite them in and give them access to a competitor's system they will trash it up and down full of holes and leaks and insecure (same principle as when you click on one of those bleep and bloop antivirus scans and they find tons of bugs) frighten the older managers who don't understand anything anyway into coughing up the dough for a new system.

Re: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!
« Reply #130 on: August 11, 2021, 06:55:15 PM »
OK I am calling it, the big announcement tomorrow is Lindell launching MyVote as a rival to Dominion.  Makes perfect sense, there are lot of rural counties that buy into this stuff who don't like Dominion now, $$$!  Especially if the grassroots demands it as a fix, keep CHYNA at bay, commies BTFO!

Actually I don't mind it; elections should be decentralized on principle.  Hell I'd be on board with bowtie man's Amish voting he keeps talking about.  But let's not kid ourselves about what is going on here.

These guys are software salesmen, you invite them in and give them access to a competitor's system they will trash it up and down full of holes and leaks and insecure (same principle as when you click on one of those bleep and bloop antivirus scans and they find tons of bugs) frighten the older managers who don't understand anything anyway into coughing up the dough for a new system.

Certainly a real possibility. I'm not sure that a private outfit should be involved at all but then having Uncle Sam do it isn't great either.

Re: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!
« Reply #131 on: August 11, 2021, 06:56:18 PM »
OH SHIT it's going down, Codemonkey's lawyer pulled the plug.  :(

If I understood right the "publicly available" images they are looking at might actually be stolen hard drives

Re: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!
« Reply #132 on: August 11, 2021, 06:56:32 PM »
WTH?  The lady jacked hard drives out of her office and fled to the Symposium? What was that lady talking about with all the 11's?

Re: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!
« Reply #133 on: August 11, 2021, 06:58:07 PM »
OH SHIT it's going down, Codemonkey's lawyer pulled the plug.  :(

If I understood right the "publicly available" images they are looking at might actually be stolen hard drives

Wasn't sure why anything along these lines would be "publicly available" in any event.


Re: The 👨🏻 Mike Lindell 🛏 Cyber 🥷 Symposium 🎪 livestream !!!
« Reply #134 on: August 11, 2021, 06:58:28 PM »
LOL - they got Tina sweating it out under the hot lights.