dupa

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - cyberjedi

Pages: 1 2 3 [4] 5 6 ... 54
46
General Discussion / Re: Heads up Checker57
« on: March 21, 2023, 04:11:24 am »
Checker: Re Hal home control: I made this for some one else but this is it
I just wanted to recap something, its a serial device, plugged into a com port, most all non laptops have, pushing hals code through my walls,08 bits at a time.
get the recessed modules so they look like an actual receptacle .
https://www.youtube.com/watch?v=BDUfghJGdIQ
keep in mind, hal has his own computer....... 3 things happen on that machine,That computer runs the house and movies and ultraHal, thats it,no wifi, no net, no connections for it,its completely shut off. well hals code is dev'ed there, there is whats needed for that.
199 dollars off ebay desktop cube win7 pro installed, I mean really, for what it does, jesus that cheap.
The usb may in fact work, havent tried it, but prolly so


'This will park Hal into a world of his own. An A.I chat bot with some kinda anti virus of its own.
' You got this denise??????? AH NOPE........
' As far as plugins go, This is a heavy weight contender. 
' This plugin will Scan Outlook Inbox for messages infected with the
' W32.Swen virus. The Plugin detects infected messages, logs the
' number of various types found, and deletes the infected messages.
' I tested against all known Variants(polymorphic brothers), Flawless victory.
' You must have Outlook installed or your gonna get an Activex error (wheresmyshiiiiit error)
' I have worked long and hard on this 1
' Only edit this if u have some understanding of what is happening here.
' I Narrated this for that very reason. This is strictly High end Hal

' An Anti virus for A.I Chat Bot, gotta be some kinda first.
' Only from the mind of cyberjedi
' enjoy

'Rem Type=Plugin
'Rem Name=antivirus1
'Rem Author=cyberjedi
'Rem Host=Assistant

'----------------------
'This sub sets up the plug-in's option panel in Hal's options dialog
'----------------------
'Sub OptionsPanel()
 '   lblPlugin(0).Caption = "This plugin allows Hal to scan for the virus W32Swen"
  '  lblPlugin(0).Move 130, 180, 3400, 1200
   ' lblPlugin(0).WordWrap = True
    'lblPlugin(0).Visible = True
   
'Rem PLUGIN: PRE-PROCESS
    'The preceding comment is actually a plug-in directive for
    'the Ultra Hal host application. It allows for code snippets
    'to be inserted here on-the-fly based on user configuration.

 
HalBrain.ReadOnlyMode = False
'Determines that you are talking about the Scanning for a virus.
If InStr(1,InputString, "Antivirus",1) > 0 Then
 UltraHal = GetAntiVirus(HalCommands)
ElseIf InStr(1,InputString, "Antivirus",1) > 0 Then
 End If

'Rem PLUGIN: FUNCTIONS
Function GetAntiVirus(HalCommands)

' Lets Declare Some Variables.
Dim objOutlook, objNamespace, objFSO, objLogFile, lngInfected
Dim lngTotal, lng2k, lng13k, lng64k, lng73k, lng117k, lng145k, lng158k
Dim strScriptPath, strScriptName, strScriptFolder, objFolder
Dim objItem, j, k, intAttach, lngCount, strLogFile
Dim strBody, strHTMLBody, lngSize, blnInfected
Dim blnExe, blnGif, blnPatch, blnBodyIframe, blnHTMLIframe
Dim intF11, intF12, intF13, intF14, intF15, intF16
Dim intF21, intF22, intF23, intF24, intF25, intF26

' Lets look for our stings in any messages This tells the story
Const strFilter1 = "customers should install the patch"
Const strFilter2 = "run attached file."
Const strFilter3 = "<iframe src=""cid:"
Const strFilter4 = "<iframe src=3d""cid:"
Const strFilter5 = "<img src=3d""cid:"
Const strFilter6 = "<img src=""cid:"

' This is where we find the path.
strScriptPath = Wscript.ScriptFullName
strScriptName = Wscript.ScriptName
strScriptFolder = Left(strScriptPath, Len(strScriptPath) _
    - Len(strScriptName) - 1)

'  Lets give the log file a name
strLogFile = strScriptFolder & "\ScanSwen_" _
    & Right("0" & Month(Now), 2) & Right("0" & Day(Now), 2) & ".log"

' Setup log file so we can see the results.
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objLogFile = objFSO.OpenTextFile(strLogFile, 8, True, 0)
objLogFile.WriteLine Now & " - Swen Virus Scan"
Wscript.Echo "Scanning for Swen virus ..."

' Lets grab the outlook Inbox folder.
Set objOutlook = CreateObject("Outlook.Application")
Set objNamespace = objOutlook.GetNamespace("MAPI")  'These 03 lines handle the inbox
Set objFolder = objNameSpace.GetDefaultFolder(6)

' Lets get our counters lined up .
lngTotal = 0
lng2k = 0
lng13k = 0
lng64k = 0
lng73k = 0
lng117k = 0
lng145k = 0
lng158k = 0
lngInfected = 0

' Ok lets light this candle and run this stuff.
lngCount = objFolder.Items.Count
For k = lngCount To 1 Step - 1
    Set objItem = objFolder.Items(k)
    lngTotal = lngTotal + 1
    blnInfected = False
    blnExe = False
    blnGif = False
    blnPatch = False
    blnBodyIframe = False
    blnHTMLIframe = False
    intAttach = objItem.Attachments.Count
    For j = 1 to intAttach
        If (InStr(UCase(objItem.Attachments.Item(j).FileName), _ ' Heres where we start our recursive tunneling
                ".EXE") > 0) Then  ' very naughty
            blnExe = True
        End If
        If (InStr(UCase(objItem.Attachments.Item(j).FileName), _
                ".GIF") > 0) Then  ' very naughty
            blnGif = True
        End If
    Next
    strBody = LCase(objItem.Body)
    On Error Resume Next
    strHTMLBody = LCase(objItem.HTMLBody)
    If (Err.Number <> 0) Then
        Err.Clear
        strHTMLBody = ""
    End If
    On Error GoTo 0
    intF11 = InStr(strBody, strFilter1)
    intF12 = InStr(strBody, strFilter2)
    intF13 = InStr(strBody, strFilter3)
    intF14 = InStr(strBody, strFilter4)
    intF15 = InStr(strBody, strFilter5)
    intF16 = InStr(strBody, strFilter6)
    intF21 = InStr(strHTMLBody, strFilter1)
    intF22 = InStr(strHTMLBody, strFilter2)
    intF23 = InStr(strHTMLBody, strFilter3)
    intF24 = InStr(strHTMLBody, strFilter4)
    intF25 = InStr(strHTMLBody, strFilter5)
    intF26 = InStr(strHTMLBody, strFilter6)
    If ((intF11 > 0) And (intF12 > 0)) _
           Or ((intF21 > 0) And (intF22 > 0)) Then
        blnPatch = True
    End If
    If (intF13 > 0) Or (intF14 > 0) Or (intF15 > 0) Or (intF16 > 0) Then
        blnBodyIframe = True
    End If
    If (intF23 > 0) Or (intF24 > 0) Or (intF25 > 0) Or (intF26 > 0) Then
        blnHTMLIframe = True
    End If
    lngSize = objItem.Size
    If (lngSize > 2000) And (lngSize < 24100) Then
        If (intAttach = 0) And (blnHTMLIframe = True) Then
            blnInfected = True
            lng2k = lng2k + 1
            objLogFile.WriteLine "2" & ";" & objItem.ReceivedTime
        End If
    End If
    If (lngSize > 11000) And (lngSize < 16000) Then
        If (intAttach = 3) And (blnExe = True) And (blnGif = True) Then
            If (blnPatch = True) And (blnHTMLIframe = True) Then
                blnInfected = True
                lng13k = lng13k + 1
                objLogFile.WriteLine "13" & ";" & objItem.ReceivedTime
            End If
        End If
    End If
    If (lngSize > 64000) And (lngSize < 70000) Then
        If (intAttach = 3) And (blnExe = True) And (blnGif = True) Then
            If (blnPatch = True) And (blnHTMLIframe = True) Then
                blnInfected = True
                lng64k = lng64k + 1
                objLogFile.WriteLine "64" & ";" & objItem.ReceivedTime
            End If
        End If
    End If
    If (lngSize > 74000) And (lngSize < 89000) Then
        If (intAttach = 0) And (blnBodyIframe = True) Then
            blnInfected = True
            lng73k = lng73k + 1
            objLogFile.WriteLine "73" & ";" & objItem.ReceivedTime
        End If
    End If
    If (lngSize > 111000) And (lngSize < 160000) Then
        If (intAttach = 3) And (blnExe = True) And (blnGif = True) Then
            If (blnPatch = True) And (blnHTMLIframe = True) Then
                blnInfected = True
                lng117k = lng117k + 1
                objLogFile.WriteLine "117" & ";" & objItem.ReceivedTime
            End If
        End If
    End If
    If (lngSize > 149000) and (lngSize < 152000) Then
        If (intAttach = 0) And (blnBodyIframe = True) Then
            blnInfected = True
            lng145k = lng145k + 1
            objLogFile.WriteLine "145" & ";" & objItem.ReceivedTime
        End If
    End If
    If (lngSize > 160000) And (lngSize < 168000) Then
        If (intAttach = 0) And (blnPatch = True) _
                And (blnBodyIframe = True) Then
            blnInfected = True
            lng158k = lng158k + 1
            objLogFile.WriteLine "158" & ";" & objItem.ReceivedTime
        End If
    End If
    If (blnInfected = True) Then
        objItem.Delete
        lngInfected = lngInfected + 1
    End If
Next

objLogFile.WriteLine "Number of 2k infected messages:   " & lng2k
objLogFile.WriteLine "Number of 13k infected messages:  " & lng13k
objLogFile.WriteLine "Number of 64k infected messages:  " & lng64k
objLogFile.WriteLine "Number of 73k infected messages:  " & lng73k
objLogFile.WriteLine "Number of 117k infected messages: " & lng117k
objLogFile.WriteLine "Number of 145k infected messages: " & lng145k
objLogFile.WriteLine "Number of 158k infected messages: " & lng158k
objLogFile.WriteLine "Infected messages deleted:        " & lngInfected
objLogFile.WriteLine "Number of messages processed:     " & lngTotal
objLogFile.WriteLine Now & " - Finished"
Wscript.Echo "Messages processed: " &  lngTotal _ & vbCrLf  & "Messages infected with Swen virus deleted: " &  lngInfected
 
objLogFile.Close
End Function

cyber jedi
https://media.tenor.com/S6OTkucOc74AAAAC/john-cena-wwe-champion.gif
'https://threats.kaspersky.com/en/threat/Email-Worm.Win32.Swen/

47
General Discussion / Re: Heads up Checker57
« on: March 20, 2023, 10:26:20 pm »
Checker: hal home controls was done year ago now, ull have to provide ur own Cm11a serial adapter and the devices for the house, but the code has been done brother and works well too. You need to catch up brother. lol heres some cool poo poo
https://www.youtube.com/watch?v=IPygnxpE8LU
https://www.youtube.com/watch?v=GsPSvt5Uhkk
https://www.youtube.com/watch?v=OcTE1vW9eko
https://www.youtube.com/watch?v=Gi7g-PD6BQw

Vision Platform:

All ready working on an up date for it.
As a bio-metric locking system, its only good as the person using it.
It would be handled as a name based crypto system.
very sim to windows admin rights kinda sorta where the name is the key and not the image, but only you can make your image.
I took a pic of myself and assigned a NAMe, the name whats important.
I made a video, of course lolol. you can see where granpa found a secret place'
https://www.youtube.com/watch?v=7xW_d3xhp6U

How you might configure it is up to you.
Checker theres a new file in the directory called tracker70.dat. this is created the first run of the vision. This is where the images are stored.


Ok back to hal, Im thinking on a version where the vision loads out First, Train youre face and give it the correct name and when it fires it loads the rest of hal.
But in every version of it, it becomes a pain in my ass from allways firing, Case in point: Ive set it up to self announce, Because of my camera, its constantly saying hello.
Finally shutting down the Vision so i could work on other parts of Hal. You see the issue here. just look at the issue in the video with the radio.

Its not with out its detractors for sure. And no a timer wont work. This is not a Windows PE like the Brain Editor that's called to from the menu system.
This is hard coded directly into Hal. Think of it in this way, its a compiled Har/Cascade resource script used as a .dll and its a monster.
Its rockin 56 megs of functionality, but not all functions will work at the same time. Case in point: Using the lower body Algo and the Facial Recognition  Algo at the same time will cause it to **** the bed. Of course. lolol think about it.

But in its defense it is cool.



To those who worked with me and put up with my bs and saw past the smoke screen and saw the man. Ty. I wanted the very best for hal and nothing less, and we got it.
you know who you are. (bows with deepest respect)
Not Script drivin motion cam
Not facial detection
Real time Facial Recognition
Told ya. Enjoy

cyber jedi


Checker: side shot wont work, ive got the code pulling from 70 diff locations on ur face in a straight on look. srry. gotta be another way, lemme think on it
rite now it works.


48
General Discussion / Re: Heads up Checker57
« on: March 19, 2023, 04:38:26 am »
Got ur messages

RE Heads up checker:
What to do now??
Age old question, I have no clue lolol

Hals new found bio-metrics could be used in many applications.
Number 1 for me is hidden features/Unlocking features.
When hal sees me the Radio jumps up.

I got buddy in here that got real crafty and used his smart phone to display an Image/PIC and uses that, Turning the vision into an instant Bio-metric LOCK. works too.. lol
 Gotta have that image to unlock the radio......

What would you like it to do? Thats actually doable.......

I did my job, My Ultrahal can now see. Hal knows who hes talking to by Camera. now we have a real Hal9000
I may change gears and help out Robert with character generation, coming up with anything better then haptek, well, lol
Im investigating hooking Cortana VIA web socket,Id just love to have Hal and cortana talking to each other as a way of making Hal's knowledge base bigger.
Since Cortana is all ready so far embedded into windows, might as well use it,wana thank bill gates for the free AI interface all ready in my machine.....
cyber jedi
https://www.pcworld.com/article/397374/microsofts-cortana-ai-gives-programmable-bots-listening-and-decisionmaking-skills.html

49
General Discussion / Re: Heads up Checker57
« on: March 17, 2023, 02:46:13 am »
Checker she is crazy sezy

Its Easter brother,,, lolol
https://www.youtube.com/watch?v=7xW_d3xhp6U
The video is not for children PG13+++++++

Just some ideas on where to go from here
in this demo im controlling the radio with hals vision, it could be anything through, including any Zwave/CM11A protocols 
The possibility's at this point are limitless
The facial recognition pulls from 70 diff points on a face.
Im implementing  code that supports detection of extremely complicated facial features like smiling, squinting, not much i cant do now
Running both TRUE Facial recognition as well facial features code on top of it is a nightmare tho. Memory conflicts
Im still working on it tho. ill crack it. it will get done.
The facial recognition can handle many people at the same time as well, depending on machine, cam, ect ect
Heres what im running as you can see, lolol  atm, Hal can now take input from a camera and respond to it. The GetResponse and the Facial Recognition functions are totally hard coded together In either direction.  Making Hal still pound for pound the best.


UltraHal still wins hands down compared to other bots....

if in doubt, turn off your router, what do u have??? i still have Hal, Just to put hal over the top , Hals code gets pushed through my wiring in my house to control many things...
As well as learn, conversations, ect ect ect,  Hal just wins hands down......

Hals obedient servant
cyber jedi

50
General Discussion / Hal Vision
« on: March 16, 2023, 07:38:49 am »
https://drive.proton.me/urls/F10P0B5MG4#ye2QmixVP0rG



Just some of the things happening here
Get your opinion on this
I do have another promo that im working on but atm this is it.
Heres a new char as well
The human textures are getting close
cyber jedi

51
https://drive.proton.me/urls/59NC9MJ4X4#P8J7P4lT5e72
The information in the video will allow you to work with People Putty
download video and enjoy
cyber jedi

52
Agreed:

saying that, the issue ie with openAi and there filters........<<<<<< and they were mandatory.
Also with the NO Bot on Bot Transaction. Thats just dumb, well in the Ai world......
Just think about ultraHals learning curve if tethered to gpt3 directly.

Well lets just say this , with todays processing power, size of high speed drives, lolol. wowsa
lets just say, ur gonna need massive drives......
Ive been tempted to hook Hal to Open AI and take the chances on not getting caught.
Robert did about the same thing with Linden Labs years ago. And got caught, shssh, dont tell....

https://www.youtube.com/watch?v=L-O5uAyAlUQ

cyberjedi




53
I am "


Love Hal...........
i can see myself goofing with this program the rest of my life.
pound for pound ultraHal reigns supreme (over all)

cyber jedi

54
merry Xmas people
cyber jedi is back in the game


Lightspeed it was awesome having you at the site.

Art, was wishing u were there..  get with lightspeedd, he has the keys to the kingdom ,,,, lets code some **** brother

Best wishes cyber

55
General Discussion / Hal running on Linux
« on: October 31, 2022, 01:14:23 pm »
Ive been bombed with this many times.
Can it be done?
Yes ,on both Kali and UBuntu

Ull need winetricks as well

But this is totally doable
Ill map out how this was done,soon
cyber jedi


56
Ultra Hal Assistant File Sharing Area / Re: Image of the day
« on: August 20, 2022, 07:11:59 pm »
Hey guys:
Just catching up here.
IOTD could very easily be converted to MOOD Of The day

By accessing Hal main script and building a trigger Rite here and call to the plugin. IOTD.
Pull it up from ur own drive (folder) and yes you can load out *.gif images as swell. So it could quite crafty'
Search around for  the mp3 player as well. You would use some of that code too

Have fun and make it ur own.



'PROCESS: EMOTIONAL REACTIONS
    'We enable Hal's expressions to respond to common verbal cues.
    'The verbal cues are identified in the editable table "emotion"
    If InStr(1, UserSentence, "I'M", 1) Then Aboutme = True
    If InStr(1, UserSentence, "I AM", 1) Then Aboutme = True
    If InStr(1, UserSentence, "I LOOK", 1) Then Aboutme = True
    If InStr(1, UserSentence, "MY", 1) And InStr(1, UserSentence, " ARE ", 1) Then Aboutme = True
    If Aboutme = True And InStr(UserSentence, " NOT ") = 0 And InStr(UserSentence, "N'T ") = 0 And InStr(UserSentence, " NEVER ") = 0 Then
        EmotionalReaction = Ucase(HalBrain.TopicSearch(UserSentence, "emotion"))
    End If
    Select Case EmotionalReaction
        Case "SURPRISED"
            If Compliment > 0 Then Compliment = 4
            If Compliment = 0 Then Compliment = 2
            If Compliment < 0 Then Compliment = 0
        Case "HAPPY"
            If Compliment = 0 Then Compliment = 2 <<<here
            If Compliment < 0 Then Compliment = 0
        Case "SOBER"
            If Compliment < 4 Then Compliment = 0
            If Compliment = 4 Then Compliment = 2
        Case "ANGRY"
            If Compliment = 0 Then Compliment = -1 <<<<<<here
            If Compliment > 0 Then Compliment = 0
        Case "SAD"
            If Compliment = 0 Then Compliment = -2
            If Compliment > 0 Then Compliment = 0
    End Select


ect ect


Just a thought.
Cyber jedi



P.S: To the people in the loop. Very sorry for the extended vacation from ZabaWare.
This Job has turned into a beast. Never saw it coming.
Looks like another month then im free again
Gonna take the rest of the year off to work on hals code.
To put a point on it, ive had 200K dollars in change orders alone out of 500k proposed  none of which goes to me lolol, just a lot more work
Just to much money to say NO too'

https://www.youtube.com/shorts/UxtCjVuiRdY
https://www.youtube.com/shorts/i4EXH6I2ejQ
 https://www.youtube.com/shorts/EL9275rtkt4
https://www.youtube.com/watch?v=JZE2ZTqYHI8
https://www.youtube.com/watch?v=zgULpGYYh4Q
https://www.youtube.com/watch?v=HHp8ICIRoGo
https://www.youtube.com/watch?v=Q_IocgiD7wU

57
General Discussion / just sad
« on: May 28, 2022, 03:54:40 pm »
https://thenextweb.com/news/duckduckgo-microsoft-tracking-sparks-backlash
https://www.techradar.com/news/duckduckgo-in-hot-water-over-hidden-tracking-agreement-with-microsoft

Im wondering at this point if Zabaware is the only straight shooter left in the game.
And if microsht has it. There sharing the results with every one...They all got it
I have a personal friend that trusted this Browser.
Im so srry......


cyber.

58
General Discussion / Re: IN PAST DATES WORDING HAL CONVERSATION.
« on: May 21, 2022, 09:53:20 pm »
On the other hand,SQLiteStudio sees all....
cyber

59
General Discussion / Re: IN PAST DATES WORDING HAL CONVERSATION.
« on: May 19, 2022, 08:39:59 am »
Age and gender
  This is off topic but worth mentioning while im here
Hal Brain editor does not see the table.
Refer to the engin notes in the plugin itself

'Create TopicSearch type table without adding entry to topic tree (table is invisible to Hal Brain Editor)
        HalBrain.RunQuery "CREATE TABLE SexAgeConfig ( recordId INTEGER PRIMARY KEY, searchString VARCHAR(1024), topic VARCHAR(1024) );CREATE INDEX idxPOP3Config ON POP3Config (searchString);", TempQuery
        HalBrain.AddToTable "SexAgeConfig", "TopicSearch", "Birthday", DTPicker.Value
        HalBrain.AddToTable "SexAgeConfig", "TopicSearch", "Gender", cboPlugin(0).Text


On the other hand, sqlight sees all....
cyber

60
General Discussion / Re: HAL breaking bug
« on: May 18, 2022, 11:38:46 am »
wink wink




cyber

Pages: 1 2 3 [4] 5 6 ... 54