bluebunny72

IDO Update via Formscirpt

Oct 1st, 2025 (edited)
9,784
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 1.86 KB | None | 0 0
  1.                 Dim loadResponse As LoadCollectionResponseData
  2.                 Dim strFilter As String
  3.  
  4.                 strFilter = String.Format("JournalId = '{0}' AND BatchStatus = 'P'", journalID)
  5.                 loadResponse = Me.IDOClient.LoadCollection("XXX_JournalBatches", "BatchStatus,BatchId", strFilter, String.Empty, 0)
  6.  
  7.                 Dim count As Integer = loadResponse.Items.Count
  8.  
  9.                 If count > 0 Then
  10.                     For i As Integer = 0 To count - 1
  11.  
  12.                         Dim batchID As Integer = loadResponse(i, "BatchId").GetValue(Of Integer)()
  13.  
  14.                         Dim updateRequest As UpdateCollectionRequestData
  15.  
  16.                         Dim updateResponse As UpdateCollectionResponseData
  17.  
  18.                         Dim item As IDOUpdateItem
  19.  
  20.                         ' Create the update request
  21.  
  22.                         updateRequest = New UpdateCollectionRequestData("XXX_JournalBatches")
  23.  
  24.                         ' Create the item to update
  25.                         ' Update request must include the _ItemId property, or the RecordDate and RowPointer properties.
  26.  
  27.                         item = New IDOUpdateItem(UpdateAction.Update, loadResponse.Items(i).ItemID)
  28.  
  29.                         ' Set the key fields to identify the record
  30.  
  31.                         item.Properties.Add("JournalId", journalID, False)
  32.  
  33.                         item.Properties.Add("BatchId", batchID, False)
  34.  
  35.                         ' Set the field(s) to update
  36.  
  37.                         item.Properties.Add("BatchStatus", "A", True)
  38.  
  39.                         ' Add the item to the request
  40.  
  41.                         updateRequest.Items.Add(item)
  42.  
  43.                         ' Execute the update
  44.  
  45.                         updateResponse = IDOClient.UpdateCollection(updateRequest)
  46.  
  47.                     Next i
  48.  
  49.                 End If           
Advertisement
Comments
  • Texnenor
    123 days
    # CSS 0.85 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
  • User was banned
Add Comment
Please, Sign In to add comment