UNDERCODE COMMUNITY
2.67K subscribers
1.23K photos
31 videos
2.65K files
79.3K links
๐Ÿฆ‘ Undercode Cyber World!
@UndercodeCommunity


1๏ธโƒฃ World first platform which Collect & Analyzes every New hacking method.
+ AI Pratice
@Undercode_Testing

2๏ธโƒฃ Cyber & Tech NEWS:
@Undercode_News

3๏ธโƒฃ CVE @Daily_CVE

โœจ Web & Services:
โ†’ Undercode.help
Download Telegram
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ WhatsApp users warned about "New Year's virus"

> According to the portal, attackers send out links to web pages infected with viruses under the guise of a Happy New Year. Switching to such a resource carries a risk for a smartphone or computer, since hackers gain access to personal data.

> "Users will also be subject to invasive advertising and will be forced to provide confidential personal data or register to subscribe to unwanted services," the material says.

> Smartphones running Android and iOS are at risk.

> it became aware of a new vulnerability in WhatsApp. So, application users could block the messenger on the devices of people with whom they were in the same group chat.

โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ PHP4 COM function (windows version) : FULL
PART 1
T.me/UndercodeTesting

๐Ÿฆ‘ ๐•ƒ๐”ผ๐•‹๐•Š ๐•Š๐•‹๐”ธโ„๐•‹ :

1) built on COM functions in PHP4 for us Developing programs in win32 is quite attractive, but there are still not many related technical documents. This will be an example of three points

2) ill send this tutorial on old windpows version for better understanding respectively processed MS office 2000 Word, Excel, Adobe Distiller to illustrate how to use the COM function in PHP.

3) COM technology proposed by the Microsoft and developed a few years ago, related terms referred to herein have OLE, OLE Automation, ActiveX, COM , the meaning of these words are basically a

> sample, are represented by the section of the package code (objects) To complete some functions of a windows application. PHP4 COM function can be connected to an object instance, and its methods and use

๐Ÿฆ‘COM markers in PHP4

Now let us begin with COM PHP4's to instantiate a component, you need new operator And object's "OLE program identifier":


$ instance = new COM ("$ identifier");

?>

Because the COM is a reserved word in PHP4, it transmits the object identifier to a constructor, now give an example of this component, depending on the nature of OOP classes, we can easily

access its methods and properties.

For example:


$ instance-> [Object]-> [method1]-> [method2]-> ..-> [property];

?> It

's that simple!

OOP structure does not work in PHP. (Due to PHP syntax issues, property names. Values โ€‹โ€‹are illegal characters such as dots and parentheses, etc.), so PHP4 provides two corresponding functions:


bool com_set (class com_object, string property name, string property_value);

mixed com_get (class com_object, string property_name);

?>

Finally, PHP4 also supports DCOM technology, which can create an object instance on a remote computer.


$ Instance = new COM (string "Component name", string "remote_server_address");

?>
Note: This is using DCOM instructions to set up PHP. In the future, PHP developers will provide support for DCOM under Unix.

Identification, properties and methods

identify a string as follows:

the MS Word: "the Word.Application" or "Word.Application.9"
MS Excel: "Excel.Application" or "Excel.Sheet"
ADOBE Acrobat: "Exch.application" or "PdfDistiller.PdfDistiller"

Written by UndercOde
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ PHP4 COM function (windows version) : FULL
PART 2
instagram.com/UndercOdeTestingCompany

๐Ÿฆ‘ ๐•ƒ๐”ผ๐•‹๐•Š ๐•Š๐•‹๐”ธโ„๐•‹ :

1) For the last identifier, I want to point out that it is not easy to get the correct object identifier name thing. If you can not access the VBA documentation, you can find about windows registry

2) table, looking about in HKEY_CLASSES_ROOT, you can get some name of the application. Object IDs that are valid on your machine are placed in the CLSID subfolder.

3) Applications typically provide documentation describing its COM methods and properties. In office2000, you can run the program, open the VBA editor, and select the object editor. Enter the application

4) a method name or attribute name of the library, and then, in the following window with the right mouse button to select a class or member name, some help, you'll get a description of the class or member. You also

5) can refer to MSDN. An Excel example is as follows: http://msdn.microsoft.com/library/officedev/off2000/xltocobjectmodelapplication.htm


6) Operate MS Word with COM functions

Now, let's start the first example:


# **** *********************************************
# This example comes from the Zend site, with minor changes
# Open a word instance and create a new document Useless test.doc
# Enter a line of text "
# ********************************************* **** #Instantiate

print "Loaded Word, version {$ word -> Version}


Written by UndercOde
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
an object

$ word = new COM ("word.application") or die ("Unable to instantiate Word"); #Get

and display the version

Written by UndercOde
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ PHP4 COM function (windows version) : FULL
PART 3
instagram.com/UndercOdeTestingCompany


"; #Another

way to get the version

$ testversion = com_get ($ word-> application, version);

print" Version using Com_get (): $ testversion
"; #Make

it visible

$ word-> Visible = 1;

# creates a new file

$ Word-> Documents-> the Add ();

# write character

$ Word-> Selection-> TypeText ( "This IS the Test A ...");

# save

$ word-> documents [1] -> the SaveAs ( "Useless test.doc");

# close

$ Word-> the Quit ();

>?

Just take a few minutes to read this program and refer to Word's OLE technical documentation, you will learn almost all the operations you need in your own program.

MS Excel function using PHP's COM

ใ€€ใ€€As the example above, like Word, you should learn this example also refer to the documentation for Excel Visual Basic Editor Object Browser.


#Open workbook and its sheet,
#This example uses a spreadsheet that is SOLVSAMP.XLS that comes with Excel installation

$ workbook = "C: Program FilesMicrosoft officeOfficeSamplesSOLVSAMP.XLS";
$ sheet = "Quick Tour"; #Instance

a Component object
$ ex = new COM ("Excel.sheet") or Die ("Did not connect"); #Get

program name and version
print "Application name: {$ ex-> Application-> value}
";
print " Loaded version: {$ ex-> Application-> version}

Written by UndercOde
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ PHP4 COM function (windows version) : FULL
PART 4
twitter.com/UNDERCODETC

๐Ÿฆ‘ ๐•ƒ๐”ผ๐•‹๐•Š ๐•Š๐•‹๐”ธโ„๐•‹ :

"; #Open workbook

so that we can use it
$ wkb = $ ex-> application-> Workbooks-> Open ($ workbook) or Die (" Did not open " );

# Pre-save the original workbook, create a copy of the workbook
$ ex-> Application->
# $ ex-> Application-> Visible = 1; #This sentence goes to comment to make Excel visible

# Read and write a cell in a new worksheet
# We can read this cell E11 (Advertising in the 4th. Quarter)
$ sheets = $ wkb-> Worksheets ($ sheet); #Select the sheet
$ sheets-> activate; #Activate it
$ cell = $ sheets-> Cells (11,5); #Select the cell (Row Column number)
$ cell-> activate; #Activate the cell
print "Old Value = {$ cell-> value}
"; #Print the value of the cell: 10000
$ cell-> value = 15000; #Change it to 15000
print "New value = {$ cell-> value}
"; #Print the new value = 15000 #Finally

, recalculate this cell with the new value
$ sheets-> Calculate; #Required
if you want to calculate, manual is optional
# Can see Total effect value (cell E13)
$ cell = $ sheets-> Cells (13,5); #Select the cell (Row Column number)
$ number = Number_format ($ cell-> value);
print "New Total cost = $$ number-was $ 47,732 before.
" ;
#According to the calculation formula, the advertisement affects the company's expenses, here will display $ 57,809 #using the

Excel built-in function
# PMT (percent / 12 months, Number of payments, Loan amount)
$ pay = $ ex-> application-> pmt (0.08 / 12,10,10000);
$ pay = sprintf ("%. 2f", $ pay);
print "Monthly payment for $ 10,000 loan @ 8% interest / 10 months: $ $ pay
";

#Should print monthly payment = $ -1,037.03 #Optional

, save
$ ex-> Application-> ActiveWorkbook-> SaveAs ("Ourtest"); #Close
without asking
$ ex-> application-> ActiveWorkbook-> Close ("False");
unset ($ ex);

?>

Written by UndercOde
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ PHP4 COM function (windows version) : FULL
PART 5
twitter.com/UNDERCODETC

๐Ÿฆ‘ ๐•ƒ๐”ผ๐•‹๐•Š ๐•Š๐•‹๐”ธโ„๐•‹ :

> This example sended makes your PHP work with Excel. Of course, there are more objects available, and accessing a self-written OOP wrapper class is as easy as accessing excel.

Access Adobe Distiller with PHP's COM

ใ€€ใ€€This last example is not a MS program, if your program has a PostScript file, that you will be interested to rewrite (distillation) it into a PDF document. Adobe has a

programs called Distiller, It can generate an instance. The code is as follows:


$ pdf = new COM ("pdfdistiller.pdfdistiller.1");

?>

ใ€€ใ€€One thing to note is that the OLE identifier "pdfdistiller" given in Distiller's documentation is invalid.

The most basic way to distill a file is:


$ pdf-> FileToPdf ($ psfile, strOutputPDF '', strJobOptions "");

?>

$ Psfile is the name of this PostScript file, and strOutputPDF is the name of the output file PDF. StrJobOptions Distiller parameter is the file name, the last two parameters

are optional, the default is the same name. This PS file name and PDF file name use this default Job options file. For example:


$ pdf-> FileToPdf ($ psfile, "", "");
#here $ psfile can be Myfile.ps will return Myfile. pdf file.

?>

There are more methods and properties available in Distiller. If you are interested, please refer to Adobe's technical documentation.


Suspension / possible problems

ใ€€ใ€€If your code what error occurred, you might create an instance, but it is not properly closed. Worst of all, this application may be held this instance, bear

fruit, there is multiple copies of this program in your list of programs, even if you correct this error can interfere with your results. The solution is: Fixed a bug since they must be promptly removed

before you start running again, and with the end of the task. For the same reason, at the end of your code, you should close the program and delete the instance in time.

You have some tricks when dealing with com_get and com_set exceptions. For example:
$ Version = Com_get ($ instance-> Application, "Version");

will work in Word but generate an error in Excel.

There are some objects that cannot be instantiated in PHP4. This is because this program requires a custom interface, but PHP4 does not support it.


Why do we use it?

ใ€€ใ€€I hope these three examples can give you some clues for thinking. PHP COM allows you to access windows4 programs in PHP scripts. This code is simpler than ASP and can integrate other

powerful PHP database support functions. Microsoft has vigorously sold this COM technology in all aspects, under different names and structures, such as COM + (Combine COM with

Microsoft Transaction Server MTS), ADO, OLE DB, OWC, Windows DNA, and so on. PHP

Written by UndercOde
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ best free antivirus software programs for Windows 2020 UnderCode lastest Report from yesterday 31/1/20
t.me/UndercOdeTesting

1) Total AV Free Antivirus

2) BullGuard Free Antivirus

3) Panda Free Antivirus

4) Bitdefender Antivirus Free Edition

5) ZoneAlarm Free Antivirus

6) Avira Free Antivirus

7) AVG Free Antivirus

8) Kaspersky Free (updated)

9) Sophos Home Free

10) Avast Free Antivirus

โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ ALL Features Needed from a good antimalware or why we need it :
example on tghe first Av
t.me/UndercOdeTesting

> Phishing protection

>Disk cleanup and system startup acceleration

> Browser manager

> Safe website browsing extension for Chrome and Edge browsers

๐Ÿฆ‘ Recognized advantages :

> Fully compatible with Windows, Android and Mac devices

> Find and copy files remotely

> Very fast without affecting performance

> Detection accuracy of fishing samples reached 89%

๐Ÿฆ‘ Deficiencies :

> Lack of real-time protection against malicious programs
Occasionally false positives

> Additional features require upgrades or paid purchases

> Cannot set up weekly scans and does not provide the option of daily scans

๐Ÿฆ‘ Reasons to buy a paid version :

> Advanced protection against ransomware

> Extra features such as password manager, webcam protection,

> smartphone optimizer, remote firewall, etc.

> Provide 7X24 hours technical support service

> 30-day money back guarantee

@UndercOdeTesting
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ End of android-5/6 (termux. net) support on 2020-01-01
t.me/UndercodeTesting

1) The latest development meeting it has been decided to drop android-5 support from 2020-01-01.
From that date there will no longer be any updates to the package repositories' android-5 branches.
An android-5 branch has also been created for termux-app, and the latest tagged version of the app (0.76) requires android 7.

2) Supporting the android-5 branches takes some time and effort from the maintainers. This time and effort would, arguably, be better spent making termux ready for android Q (and later). Some big changes are required to make termux usable for the latest android versions, as discussed in termux/termux-app#1072.

3) If you are using android 5 or android 6 on your device then the only way to continue to get updates after 2020-01-01 would be to upgrade to android 7 or newer (if possible).

4) they start first separated the repos into an android-5 branch and a master branch.

@UndercodeOfficial
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ Expert opinion: software development ABC By UndercOde
t.me/UndercOdeTesting
PART 1


<STRONG> Interview with Trend Micro R & D Associate Gong Huazhong <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <? Xml: namespace prefix = o ns = \ "urn: schemas-microsoft- com: office: office \ "/> <o: p> </ o: p> </ SPAN> </ STRONG>
<P class = MsoNormal style = \" MARGIN: 0cm 0cm 0pt \ "> <SPAN lang = EN -US style = \ "mso-fareast-language: EN-US \"> <FONT size = 3> <STRONG> & nbsp; <o: p> </ o: p> </ STRONG> </ FONT> </ FONT> SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Introduction: When it comes to software development, everyone knows that this is not a simple task. Indeed, software The industry is a highly competitive and fast-moving industry. Modules are often revised due to market changes. Therefore, news about software vendors delaying product launches is heard, but this does not mean that delayed listing is normal. This kind of effort and standard, truly achieves "</ SPAN> <SPAN lang = EN-US style = \" mso-fareast-language: ZH-CN; mso-fareast-font-family: Songti \ "> Ship quality product on time </ SPAN> <SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family : \ 'Times New Roman \' \ ">". </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> <
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ " FONT-FAMILY: Times New Roman; mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Because software companies have different business natures, the engineering required for product development is not the same. In the case of Trend Micro, it is a company that produces software products. After the product is developed and listed, customers decide whether to buy it. Therefore, the risk of software development is very Big. Some small software companies are "software projects" that receive customers. They only need to complete the project, and the risks are naturally small. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> It can be seen that for software companies whose main business is the production of software products, the larger the scale, The development risk is naturally relatively high. How to make a perfect software product that meets the needs of the market is the aspiration of all software vendors, but this involves many small and large links, including company policies, operating procedures, and engineer quality. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>

Written by UndercOde
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ Expert opinion: software development ABC By UndercOde
t.me/UndercOdeTesting

PART 2

<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <B> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast -font-family: Songti \ "> & nbsp; & nbsp; & nbsp; Perfect is empty </ SPAN> </ B> <B> <SPAN style = \" FONT-FAMILY: Songti; mso-fareast-language: EN-US ; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ ">, </ SPAN> </ B> <B> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: ๅฎ‹ไฝ“ \"> Simple is beauty </ SPAN> </ B> <B> <SPAN style = \ " FONT-FAMILY: Times New Roman; mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> !! </ SPAN> <SPAN lang = EN-US>

<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Here is a simple discussion of the development principles. For example, if the product is not 100% perfect, will it always be changed? of course not! Take the birth of a baby as an example.

> If people can add a specific gene to produce a perfect baby when they want to conceive, then it is certain that this period will be far away. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> There are several concepts and practices in controlling software development risks. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> One. <B> โ€œSmallโ€ ๏ผ </ B> If the product โ€™s </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: ๅฎ‹ไฝ“ \" > size </ SPAN> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font- family: \ 'Times New Roman \' \ "> Small, the complexity will be reduced a lot, so it is a good practice to cut large projects into small parts and then leave them to different engineers. For example, the first generation of </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: Times New Roman \"> ICQ </ SPAN> <SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \ '\ "> Designed and written by one or two people, and soon it was made. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P> SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \ '\ "> Designed and written by one or two people, and soon it was made. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
Written by UndercOde
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ Expert opinion: software development ABC By UndercOde
t.me/UndercOdeTesting

PART 3

<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> ไบŒ. <B> "</ B> </ SPAN> <B> <SPAN lang = EN-US style = \" mso-fareast-language: ZH-CN; mso-fareast-font-family: Songti \ "> Simple is beauty โ€</ SPAN> </ B> <SPAN style = \" FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso- hansi-font-family: \ 'Times New Roman \' \ ">-The larger the company, the lower the productivity, because some additional costs need to be added, including the control of schedule, the quality of engineers, etc. (</ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US; mso-fareast-font-family: Times New Roman \"> policy </ SPAN> <SPAN style = \ "FONT -FAMILY: Times New Roman; / SPAN> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ ">) first, so that you can better grasp the risks, this part involves the scope of" operation management ". </ SPAN> </ FONT> </ P> / SPAN> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ ">) first, so that you can better grasp the risks, this part involves the scope of" operation management ". </ SPAN> </ FONT> </ P>
(Program) engineers also need manpower input such as design specifications, inspection procedures, and test procedures. Compared with the initial situation, the additional cost is increased by an equal number of stages. Generally speaking, the system management is more needed, but on the other hand, the system may also form bureaucracy and stifle creativity, and more documents may not make the quality better. The solution is from the perspective of users. do. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>

Written by UndercOde
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ Expert opinion: software development ABC By UndercOde
t.me/UndercOdeTesting

PART 4

<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ " FONT-FAMILY: Times New Roman; mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> The quality of software products actually depends on the needs of users. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font -family:
SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: Times New Roman \">) </ SPAN> </ FONT> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Is quite important. The difference between software and hardware is that as long as it takes more time for software development, few functions cannot be achieved, but its difficulty lies in "how to choose". </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P> SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: Songti \">) </ SPAN> </ FONT> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Is quite important. The difference between software and hardware is that as long as it takes more time for software development, few functions cannot be achieved, but its difficulty lies in "how to choose". </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P> Is quite important. The difference between software and hardware is that as long as it takes more time for software development, few functions cannot be achieved, but its difficulty lies in "how to choose". </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P> Is quite important. The difference between software and hardware is that as long as it takes more time for software development, few functions cannot be achieved, but its difficulty lies in "how to choose". </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <B> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> & nbsp; & nbsp; Creative freedom-the key to the survival of software companies </ SPAN> </ B> <B> <SPAN lang = EN-US style = \" mso-fareast-language: EN-US \ "> <o: p> </ o: p> </ SPAN> </ B> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <B> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \ "> <FONT size = 3> & nbsp; <o: p> </ o: p> </ FONT> </ SPAN> </ B> </ P>

โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> <B>. Understand the needs of customers, and change the way to meet their needs (market) </ B>-For example, if the customer does not dare to demand because of some factors, you can try another way to present it, as if customers like plasma TV, but The price of plasma TV is too expensive to be in demand. R & D personnel can try to study the quality of the TV to be as good as the plasma TV. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0; mso-char-indent-size: 12.0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \ '\ "> Since the customer needs of high-tech products are not easy to know, how to get inspiration for product development? Many engineers start with their own problems. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0; mso-char-indent-size: 12.0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \ '\ "> In Trend Micro, in addition to creative ideas for large architectures </ SPAN> <SPAN lang = EN-US style = \" mso-fareast-language: ZH-CN; mso-fareast-font-family : Songti \ "> CIO </ SPAN> <SPAN style = \" FONT-FAMILY: Songti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso- hansi-font-family: \ 'Times New Roman \' \ "> (Technical Chief) or advanced research and development director, the size underneath </ SPAN> <SPAN lang = EN-US style = \" mso-fareast-language : ZH-CN; mso-fareast-font-family: Times New Roman \ "> idea </ SPAN> <SPAN style = \" FONT-FAMILY: Times New Roman;mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Those are thought by engineers , Good engineers will think for themselves </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: Songti \"> solution </ SPAN> < SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \ '\ "> (Solution), bad engineers become </ SPAN> <SPAN lang = EN-US style = \" mso-fareast-language: ZH-CN; mso-fareast-font-family : Songti \ "> coding machine </ SPAN> <SPAN style = \" FONT-FAMILY: Songti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso -hansi-font-family: \ 'Times New Roman \' \ "> (programming machine). </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \ '; mso-hansi-font-family: \' Times New Roman \ '\ "> <FONT size = 3> </ FONT> </ SPAN> </ P>
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ Install Oracle under RedFlag-linux any Pc Example by UndercOde
Part 1 - full
t.me/UndercOdeTesting

๐Ÿฆ‘ ๐•ƒ๐”ผ๐•‹๐•Š ๐•Š๐•‹๐”ธโ„๐•‹ :

1) machine configuration

Example on old Pc CPU: Intel Pentium III 668203 khz

memory: 128M

operating system: Redflag-Server2.0 (fully installed)

SWAP area: 256M

2) install the required software
Oracle8161_tar.gz

3) Creating the oracle account

4) log in as the root account, open a terminal window, create oracle account

[root @ dbs / root] useradd oracle

[root @ dbs / root] passwd oracle (oralce account settings Password) The

system automatically creates the / home / oracle directory, the owner is oracle. My Oracle ready to install

in this directory.


4) Unzip oracle8161_tar.gz and

log in as root and execute:

[root @ dbs / root] cd / backup

[root @ dbs / backup] tar zxvf oracle8161_tar.gz

5) Generate the Oralce8iR2 directory in the / backup / directory, which contains the unpack Post file

The user environment setting oracle

6) the oracle account login, open terminal window, using the text editor to open

/home/oracle/.bash_profile finally add

the environment variable is set as the line:

ORACLE_HOME = / Home / oracle; Export ORACLE_HOME

the LD_LIBRARY_PATH = / Home / Oracle / lib; Export the LD_LIBRARY_PATH

the ORACLE_BASE = / Home / Oracle; Export the ORACLE_BASE

the ORACLE_SID = ORCL; Export the ORACLE_SID

the ORA_NLS33 = / Home / Oracle / ocommon / NLS / ADMIN / Data; Export the ORA_NLS33

the NLS_LANG = american_america.zhs16cgb231280; Export the NLS_LANG

7) the Log OUT, Log in again with the oracle account and type the env command to view the environment variables you just set.

[oracle @ dbs oracle] env

Written by UndercOde
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ Install Oracle under RedFlag-linux any Pc Example by UndercOde
Part 2
t.me/UndercOdeTesting

> create the oracle data file directory

I want the data files in the / home / oracle / data directory, so

ใ€€[oracle @ dbs oracle] mkdir the Data

๐Ÿฆ‘ install the Oracle 8i database software

(1) oracle account login, enter Xwindows, open the terminal window

ใ€€(2) [oracle @ dbs oracle] cd / backup / Oracle8iR2

ใ€€(3) Continue installation in the oracle user window

ใ€€ใ€€ใ€€[oracle @ dbs Oralcle8iR2] ./runInstaller

10) On the Java-based Oracle installer interface that appears, click Next.

ใ€€(4) On the File Locations screen, check that the Destination Path is / home / oracle, and click Next.

ใ€€(5) In the Unix Group Name window, type "" oracle "", and click Next;

ใ€€(6) A window will pop up, asking for Run /home/oracle/orainstRoot.sh as root

ใ€€(7) Switch to the terminal window, and switch to root as follows:

ใ€€ใ€€ใ€€[root @ dbs / root] cd / home / oracle

ใ€€ใ€€ใ€€[root @ dbs oracle] ./ orainstRoot.sh

ใ€€(8) Return to the window that just popped up, and click Retry.

ใ€€(9) On the "Available products" window that appears, select "Oracle8I enterprise edition 8.1.6.1.0" and click Next.

ใ€€(10) Select Typical on the next screen and click Next.

ใ€€(11) On the Privileged Operating System Groups interface, click Next.

ใ€€(12) prompted to enter the global database name, what they like what you write, I wrote a wap,

ใ€€ verify ORACLE_SID is ORCL, click the Next

ใ€€(13) prompts for db files localtion, enter / home / oracle / data, click the Next

ใ€€(14 ) On the final Summary window, click Install.

ใ€€(15) The installation is now officially started, and it will be completed in less than 30 minutes.

ใ€€(16) After the file is copied and connected, a window asking to run root.sh will pop up and switch to root. User window,

ใ€€ใ€€ใ€€ใ€€[root @ dbs oracle] ./ root.sh

ใ€€ใ€€ใ€€ใ€€When you ask local bin directory, press Enter

ใ€€(17) to return to the window asking to run root.sh, click OK

Written by UndercOde
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ Install Oracle under RedFlag-linux any Pc Example by UndercOde
Part 3
t.me/UndercOdeTesting


(18) Oracle Net8 Configuration and Oracle Database Configuration Assistants Start,

install Net8 and create the database. This step took another 20 minutes or so.

(19) After the Oracle Database Configuration Assistants, in the pop-up window to create a complete database

on the port Click the OK

(20) in the End of Installation screen, click Exit, in the pop Do you reallywant to exit?

Click yes on the window

๐Ÿฆ‘ Now all Oralce 8i Enterprise is installed! You can use the Oracle database management tools svrmgrl,

sql * plus to test the installed database!


Written by UndercOde
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ HOW TO TEST AND INSTALLED ORACLE ON LINUX :
Twitter.com/UndercOdeTC

๐Ÿฆ‘ LET S START THE TEST :

[oracle @ dbs oracle] svrmgrl

Oracle Server Manager Release V..-Production

Copyright (c) 1997, 1999, Oracle Corporation. All Rights Reserved.

Oracle8i Enterprise Edition Release V..-Production

With the Partitioning option

JServer Release V...-Production

SVRMGR> connect internal

Connected.

SVRMGR> shutdown

Database closed.

Database dismounted.

ORACLE instance shut down.

SVRMGR> startup

ORACLE instance started.

Total System Global Area 56012784 bytes

Fixed Size 69616 bytes

Variable Size 38993920 bytes

Database Buffers 16777216 bytes

Redo Buffers 172032 bytes

Database mounted.

Database opened.

SVRMGR> quit

Server Manager complete


๐Ÿฆ‘SQL-PLUS

[oracle@dbs oracle]$ sqlplus

SQL*Plus: Release - Production on Sun Apr 15 09:20:12 2019

(c) Copyright 1999 Oracle Corporation. All rights reserved.

Enter user-name: scott

Enter password: tiger

Connected to:

Oracle8i Enterprise Edition Release - Production

With the Partitioning option

JServer Release V.. - Production

SQL> select * from emp

There should be a bunch of data, there are 14 entries, it seems okay.

SQL> quit

WELL DONE THATS ALL !

Written by UndercOde
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘2019 Small tool
> An install and upgrade script for the Hack typeface on the Linux platform
The hack-linux-installer.sh shell script installs fonts from the Hack typeface repository at a requested release version number on the Linux platform. This script can be used for initial font installs and upgrades to new versions (or downgrades if ever necessary).

๐Ÿฆ‘๐•€โ„•๐•Š๐•‹๐”ธ๐•ƒ๐•ƒ๐•€๐•Š๐”ธ๐•‹๐•€๐•†โ„• & โ„๐•Œโ„•:

1) curl -L -O https://raw.githubusercontent.com/source-foundry/hack-linux-installer/master/hack-linux-installer.sh

2) chmod +x hack-linux-installer.sh

3) ./hack-linux-installer.sh [VERSION]
Define the version number with the format vX.XXX. You must use a lowercase v followed by the version number string that is used in the repository releases.

For example, install Hack v3.003 with the following command:

4) ./hack-linux-installer.sh v3.003
Alternatively, you can use the installer to install the latest version like so:

5) ./hack-linux-installer.sh latest


๐Ÿฆ‘ FEATURES :

> The release archive is pulled from the repository release

> The release archive is unpacked

> The fonts are installed on the path $HOME/.local/share/fonts

> The font cache is cleared and regenerated

> fc-list | grep "Hack" is executed to display the installed font paths. You should see expected install filepaths with this command.

@UndercOdeTesting
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ Shell Script For Attacking Wireless Connections Using Built-In Kali Tools. Supports All Securities (WEP, WPS, WPA, WPA2)
lastest update 2019
T.me/UnderCodeTesting

๐Ÿฆ‘๐•€โ„•๐•Š๐•‹๐”ธ๐•ƒ๐•ƒ๐•€๐•Š๐”ธ๐•‹๐•€๐•†โ„• & โ„๐•Œโ„•:

1) git clone https://github.com/esc0rtd3w/wifi-hacker

2) cd wifi-hacker

3) chmod 777 wifi-hacker.sh

4) ./wifi-hacker.sh

๐Ÿฆ‘Features :

> wifi bruteforce

> hack wep

> hack wpa

> hack wpa2

> hack wps

๐Ÿฆ‘Tested on

> debian

> kali

> parrot

@UndercOdeOfficial
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–